aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaswinder Singh Rajput <jaswinderrajput@gmail.com>2009-01-31 10:48:44 +0530
committerJaswinder Singh Rajput <jaswinderrajput@gmail.com>2009-02-01 11:01:23 +0530
commit350eb8b3cb5e4860a4c8352f2cca00e6eb4a16b2 (patch)
tree862313005e0d3b0116178b02adb79144b9d31545
parentheaders_check fix: avr32, swab.h (diff)
downloadlinux-dev-350eb8b3cb5e4860a4c8352f2cca00e6eb4a16b2.tar.xz
linux-dev-350eb8b3cb5e4860a4c8352f2cca00e6eb4a16b2.zip
headers_check fix: blackfin, swab.h
fix the following 'make headers_check' warnings: usr/include/asm-blackfin/swab.h:4: include of <linux/types.h> is preferred over <asm/types.h> usr/include/asm-blackfin/swab.h:13: found __[us]{8,16,32,64} type without #include <linux/types.h> Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
-rw-r--r--arch/blackfin/include/asm/swab.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/blackfin/include/asm/swab.h b/arch/blackfin/include/asm/swab.h
index 69a051b612bd..6403ad2932eb 100644
--- a/arch/blackfin/include/asm/swab.h
+++ b/arch/blackfin/include/asm/swab.h
@@ -1,7 +1,7 @@
#ifndef _BLACKFIN_SWAB_H
#define _BLACKFIN_SWAB_H
-#include <asm/types.h>
+#include <linux/types.h>
#include <linux/compiler.h>
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) || defined(__KERNEL__)