diff options
author | hartleys <hartleys@visionengravers.com> | 2010-05-06 16:51:04 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2010-05-25 02:23:17 -0400 |
commit | 41c4221ca6b9db8ea63d2c2323c0e7a8865eba6e (patch) | |
tree | 31e12f709964805f9d73cf834297950b9ad09000 /drivers/spi/spi_butterfly.c | |
parent | 6e27388f1bd60b55e0b1a83d14233e6c7ad33700 (diff) |
spi: move bitbang txrx utility functions to private header
A number of files in drivers/spi fail checkincludes.pl due to the double
include of <linux/spi/spi_bitbang.h>.
The first include is needed to get the struct spi_bitbang definition and
the spi_bitbang_* function prototypes.
The second include happens after defining EXPAND_BITBANG_TXRX to get the
inlined bitbang_txrx_* utility functions.
The <linux/spi/spi_bitbang.h> header is also included by a number of other
spi drivers, as well as some arch/ code, in order to use struct spi_bitbang
and the associated functions.
To fix the double include, and remove any potential confusion about it, move
the inlined bitbang_txrx_* functions to a new private header in drivers/spi
and also remove the need to define EXPAND_BITBANG_TXRX.
Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/spi/spi_butterfly.c')
-rw-r--r-- | drivers/spi/spi_butterfly.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/spi/spi_butterfly.c b/drivers/spi/spi_butterfly.c index c2184866fa9c..8b5281281111 100644 --- a/drivers/spi/spi_butterfly.c +++ b/drivers/spi/spi_butterfly.c | |||
@@ -149,8 +149,7 @@ static void butterfly_chipselect(struct spi_device *spi, int value) | |||
149 | #define spidelay(X) do{}while(0) | 149 | #define spidelay(X) do{}while(0) |
150 | //#define spidelay ndelay | 150 | //#define spidelay ndelay |
151 | 151 | ||
152 | #define EXPAND_BITBANG_TXRX | 152 | #include "spi_bitbang_txrx.h" |
153 | #include <linux/spi/spi_bitbang.h> | ||
154 | 153 | ||
155 | static u32 | 154 | static u32 |
156 | butterfly_txrx_word_mode0(struct spi_device *spi, | 155 | butterfly_txrx_word_mode0(struct spi_device *spi, |