staging: dgnc: Fix included header from 'asm'
authorKonrad Zapalowicz <bergo.torino@gmail.com>
Wed, 6 Aug 2014 19:01:22 +0000 (21:01 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 16 Aug 2014 19:23:14 +0000 (12:23 -0700)
This commit fixes the checkpatch warning:

drivers/staging/dgnc/dgnc_neo.c:37:
    WARNING: Use #include <linux/io.h> instead of <asm/io.h>

Signed-off-by: Konrad Zapalowicz <bergo.torino@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/dgnc/dgnc_neo.c

index 68ff1161e6773935ff96d374691314433903d38e..d58aaa067f4d85ad67e82131c6af9fa543b53fd4 100644 (file)
@@ -34,7 +34,7 @@
 #include <linux/sched.h>       /* For jiffies, task states */
 #include <linux/interrupt.h>    /* For tasklet and interrupt structs/defines */
 #include <linux/delay.h>       /* For udelay */
-#include <asm/io.h>            /* For read[bwl]/write[bwl] */
+#include <linux/io.h>          /* For read[bwl]/write[bwl] */
 #include <linux/serial.h>      /* For struct async_serial */
 #include <linux/serial_reg.h>  /* For the various UART offsets */
 
This page took 0.025622 seconds and 5 git commands to generate.