diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 14:37:35 (GMT) |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 18:03:12 (GMT) |
commit | 550e978aa52e2ac3c493e8a0b36b368ade6dd2b4 (patch) | |
tree | 2c274b3d0f1ca2649fe5589ff340abfd37b43cdf | |
parent | bcf74582af3feca80ec96cc21d0a26c938d1863e (diff) | |
download | linux-550e978aa52e2ac3c493e8a0b36b368ade6dd2b4.tar.xz |
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>
-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 c93ef9d..95251cc 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> |