diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2009-01-03 00:31:13 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-01-03 00:31:13 -0500 |
commit | 2ef4c01e180902a0197f959f84d4ae1d8eb18888 (patch) | |
tree | 191dfbbec79b4a0d919a693a0350de6ceb04737f /arch | |
parent | 7c59d28d0e798fff1ebfedcf7821cbd5513091bd (diff) |
sparc: fix warning in userspace header jsflash.h
Fix following warnings in jsflash.h:
jsflash.h:11: include of <linux/types.h> is preferred over <asm/types.h>
jsflash.h:24: found __[us]{8,16,32,64} type without #include <linux/types.h>
Fixed by changing the include to <linux/types.h>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sparc/include/asm/jsflash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/include/asm/jsflash.h b/arch/sparc/include/asm/jsflash.h index 3457f29bd73b..0717d9e39d2d 100644 --- a/arch/sparc/include/asm/jsflash.h +++ b/arch/sparc/include/asm/jsflash.h | |||
@@ -8,7 +8,7 @@ | |||
8 | #define _SPARC_JSFLASH_H | 8 | #define _SPARC_JSFLASH_H |
9 | 9 | ||
10 | #ifndef _SPARC_TYPES_H | 10 | #ifndef _SPARC_TYPES_H |
11 | #include <asm/types.h> | 11 | #include <linux/types.h> |
12 | #endif | 12 | #endif |
13 | 13 | ||
14 | /* | 14 | /* |