diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 19:56:41 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 19:56:41 +0530 |
commit | de189f078ee4ae74944e6827dff184a3ef1fc89b (patch) | |
tree | c7420d4d9c1c237d4fb3c619f74395fe9f18c0e8 /include/linux | |
parent | c86629c855800071314810881d1d2fb226ca9ec9 (diff) | |
download | blackbird-obmc-linux-de189f078ee4ae74944e6827dff184a3ef1fc89b.tar.gz blackbird-obmc-linux-de189f078ee4ae74944e6827dff184a3ef1fc89b.zip |
headers_check fix: dvb/frontend.h
fix the following 'make headers_check' warnings:
usr/include/linux/dvb/frontend.h:29: include of <linux/types.h> is preferred over <asm/types.h>
usr/include/linux/dvb/frontend.h:76: 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')
-rw-r--r-- | include/linux/dvb/frontend.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/dvb/frontend.h b/include/linux/dvb/frontend.h index 55026b1a40bd..51c8d2d49e42 100644 --- a/include/linux/dvb/frontend.h +++ b/include/linux/dvb/frontend.h @@ -26,8 +26,7 @@ #ifndef _DVBFRONTEND_H_ #define _DVBFRONTEND_H_ -#include <asm/types.h> - +#include <linux/types.h> typedef enum fe_type { FE_QPSK, |