diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 12:02:35 -0500 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 13:43:34 -0500 |
commit | 70c2ed65fe4090c9b92512ee1e35dc6625539f90 (patch) | |
tree | 6904d0e5789e87fc88a62447caacec2cc7a4996a | |
parent | 9a0e0ac21ca2af4715808b97bd600f0aecd87240 (diff) |
headers_check fix: mtd/inftl-user.h
fix the following 'make headers_check' warning:
usr/include/mtd/inftl-user.h:61: 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/mtd/inftl-user.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mtd/inftl-user.h b/include/mtd/inftl-user.h index e17eda302b2d..d409d489d900 100644 --- a/include/mtd/inftl-user.h +++ b/include/mtd/inftl-user.h | |||
@@ -6,6 +6,8 @@ | |||
6 | #ifndef __MTD_INFTL_USER_H__ | 6 | #ifndef __MTD_INFTL_USER_H__ |
7 | #define __MTD_INFTL_USER_H__ | 7 | #define __MTD_INFTL_USER_H__ |
8 | 8 | ||
9 | #include <linux/types.h> | ||
10 | |||
9 | #define OSAK_VERSION 0x5120 | 11 | #define OSAK_VERSION 0x5120 |
10 | #define PERCENTUSED 98 | 12 | #define PERCENTUSED 98 |
11 | 13 | ||