diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 22:39:17 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 00:15:24 +0530 |
commit | d5c72d7842c71403bc3d57ca05a8a1f96d81e262 (patch) | |
tree | fea4d656ff650b7bd3a28a6d846f65279afd98a7 /include | |
parent | de4d3795527b06c67e1333c5662f146b59c97e21 (diff) |
headers_check fix: linux/nubus.h
fix the following 'make headers_check' warning:
usr/include/linux/nubus.h:232: 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')
-rw-r--r-- | include/linux/nubus.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/nubus.h b/include/linux/nubus.h index c4355076d1a..7382af37473 100644 --- a/include/linux/nubus.h +++ b/include/linux/nubus.h @@ -12,6 +12,7 @@ #ifndef LINUX_NUBUS_H #define LINUX_NUBUS_H +#include <linux/types.h> #ifdef __KERNEL__ #include <asm/nubus.h> #endif |