diff options
author | Illia Smyrnov <illia.smyrnov@ti.com> | 2013-06-14 19:12:07 +0300 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-06-17 10:13:29 +0100 |
commit | 56cd5c1578135120d73a7054140855728f8cca36 (patch) | |
tree | bd3b9af0fadf61034e56601f8de30bc0eaa259a4 /drivers/ide | |
parent | 0514dd76ea556859d398aaff725817e1c97579ea (diff) |
spi: omap2-mcspi: Move bytes per word calculation to the function
Introduce mcspi_bytes_per_word function as replacement for the next code
fragment:
int c = (word_len <= 8) ? 1 :
(word_len <= 16) ? 2 :
/* word_len <= 32 */ 4;
This code used 2 times in current driver code and will be used 2 times in
the next FIFO buffer support patch. Replace it with inline function with clear
name to improve code legibility.
Signed-off-by: Illia Smyrnov <illia.smyrnov@ti.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/ide')
0 files changed, 0 insertions, 0 deletions