spi: omap2-mcspi: Move bytes per word calculation to the function
authorIllia Smyrnov <illia.smyrnov@ti.com>
Fri, 14 Jun 2013 16:12:07 +0000 (19:12 +0300)
committerMark Brown <broonie@linaro.org>
Mon, 17 Jun 2013 09:13:29 +0000 (10:13 +0100)
commit56cd5c1578135120d73a7054140855728f8cca36
treebd3b9af0fadf61034e56601f8de30bc0eaa259a4
parent0514dd76ea556859d398aaff725817e1c97579ea
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>
drivers/spi/spi-omap2-mcspi.c
This page took 0.026374 seconds and 5 git commands to generate.