diff options
author | Stephan Gabert <stephan.gabert@fau.de> | 2014-06-16 16:50:49 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-06-19 17:25:16 -0700 |
commit | 85da528df72cde1f25fe374c515dace9f0693e05 (patch) | |
tree | 5fb8c0e9e3bc78a7bb9067313c075129ebc04648 | |
parent | 05dca37303c10c7fa5a58138e6f0c8fb6b5f4e17 (diff) | |
download | op-kernel-dev-85da528df72cde1f25fe374c515dace9f0693e05.zip op-kernel-dev-85da528df72cde1f25fe374c515dace9f0693e05.tar.gz |
staging/wlags49_h2: checkpatch: including <linux/*.h> instead of <asm/*.h>
As warned by checkpatch.pl, one should use #include <linux/io.h>
instead of #include <asm/io.h> and #include <linux/bitops.h>
instead of #include <asm/bitops.h>.
Signed-off-by: Stephan Gabert <stephan.gabert@fau.de>
Signed-off-by: Nicolas Pfeiffer <nicolas.pfeiffer@fau.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/wlags49_h2/wl_cs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/wlags49_h2/wl_cs.c b/drivers/staging/wlags49_h2/wl_cs.c index 3f7cf41..5c6e18c 100644 --- a/drivers/staging/wlags49_h2/wl_cs.c +++ b/drivers/staging/wlags49_h2/wl_cs.c @@ -73,8 +73,8 @@ #include <linux/interrupt.h> #include <linux/in.h> #include <linux/delay.h> -#include <asm/io.h> -#include <asm/bitops.h> +#include <linux/io.h> +#include <linux/bitops.h> #include <linux/netdevice.h> #include <linux/etherdevice.h> |