diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2009-01-02 21:31:13 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-01-02 21:31:13 -0800 |
commit | 2ef4c01e180902a0197f959f84d4ae1d8eb18888 (patch) | |
tree | 191dfbbec79b4a0d919a693a0350de6ceb04737f /arch/sparc | |
parent | 7c59d28d0e798fff1ebfedcf7821cbd5513091bd (diff) | |
download | linux-3.10-2ef4c01e180902a0197f959f84d4ae1d8eb18888.tar.gz linux-3.10-2ef4c01e180902a0197f959f84d4ae1d8eb18888.tar.bz2 linux-3.10-2ef4c01e180902a0197f959f84d4ae1d8eb18888.zip |
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/sparc')
-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 3457f29bd73..0717d9e39d2 100644 --- a/arch/sparc/include/asm/jsflash.h +++ b/arch/sparc/include/asm/jsflash.h @@ -8,7 +8,7 @@ #define _SPARC_JSFLASH_H #ifndef _SPARC_TYPES_H -#include <asm/types.h> +#include <linux/types.h> #endif /* |