diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 20:07:35 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 23:33:12 +0530 |
commit | 550e978aa52e2ac3c493e8a0b36b368ade6dd2b4 (patch) | |
tree | 2c274b3d0f1ca2649fe5589ff340abfd37b43cdf /include/linux/spi/spidev.h | |
parent | bcf74582af3feca80ec96cc21d0a26c938d1863e (diff) | |
download | blackbird-obmc-linux-550e978aa52e2ac3c493e8a0b36b368ade6dd2b4.tar.gz blackbird-obmc-linux-550e978aa52e2ac3c493e8a0b36b368ade6dd2b4.zip |
headers_check fix: spi/spidev.h
fix the following 'make headers_check' warning:
usr/include/linux/spi/spidev.h:83: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Diffstat (limited to 'include/linux/spi/spidev.h')
-rw-r--r-- | include/linux/spi/spidev.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/spi/spidev.h b/include/linux/spi/spidev.h index c93ef9d42a01..95251ccd5a07 100644 --- a/include/linux/spi/spidev.h +++ b/include/linux/spi/spidev.h @@ -22,6 +22,7 @@ #ifndef SPIDEV_H #define SPIDEV_H +#include <linux/types.h> /* User space versions of kernel symbols for SPI clocking modes, * matching <linux/spi/spi.h> |