staging: dgap: Fix include errs reported by checkpatch
authorMark Hounschell <markh@compro.net>
Fri, 28 Feb 2014 17:42:12 +0000 (12:42 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 28 Feb 2014 22:58:00 +0000 (14:58 -0800)
This patch fixes all "include" related errors in
dgap.c as reported by checkpatch

Signed-off-by: Mark Hounschell <markh@compro.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/dgap/dgap.c

index 5a92398f98922318d5ba66d2725d612561fd6f7f..8fa11ab2dc62ded22d0d9d9ca2160a026ecdc4ae 100644 (file)
@@ -61,7 +61,7 @@
 #include <linux/pci.h>
 #include <linux/delay.h>       /* For udelay */
 #include <linux/slab.h>
-#include <asm/uaccess.h>       /* For copy_from_user/copy_to_user */
+#include <linux/uaccess.h>
 #include <linux/sched.h>
 
 #include <linux/interrupt.h>   /* For tasklet and interrupt structs/defines */
@@ -69,7 +69,7 @@
 #include <linux/tty.h>
 #include <linux/tty_flip.h>
 #include <linux/serial_reg.h>
-#include <asm/io.h>            /* For read[bwl]/write[bwl] */
+#include <linux/io.h>          /* For read[bwl]/write[bwl] */
 
 #include <linux/string.h>
 #include <linux/device.h>