diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 19:55:32 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 19:55:32 +0530 |
commit | c86629c855800071314810881d1d2fb226ca9ec9 (patch) | |
tree | 7d2e8113a564cbffd4ae95f203ae24eb8ff6db7e /include/linux/dvb | |
parent | 15cf98ad2965aaefaa2f85332535ff39e48f9f4e (diff) | |
download | op-kernel-dev-c86629c855800071314810881d1d2fb226ca9ec9.zip op-kernel-dev-c86629c855800071314810881d1d2fb226ca9ec9.tar.gz |
headers_check fix: dvb/dmx.h
fix the following 'make headers_check' warnings:
usr/include/linux/dvb/dmx.h:27: include of <linux/types.h> is preferred over <asm/types.h>
usr/include/linux/dvb/dmx.h:90: 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/dvb')
-rw-r--r-- | include/linux/dvb/dmx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/dvb/dmx.h b/include/linux/dvb/dmx.h index 402fb7a..fef9437 100644 --- a/include/linux/dvb/dmx.h +++ b/include/linux/dvb/dmx.h @@ -24,7 +24,7 @@ #ifndef _DVBDMX_H_ #define _DVBDMX_H_ -#include <asm/types.h> +#include <linux/types.h> #ifdef __KERNEL__ #include <linux/time.h> #else |