summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Hounschell <markh@compro.net>2014-02-28 12:42:12 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-02-28 14:58:00 -0800
commit3d9dc5db40355c8c8eb0276b6f40016f5a32efa3 (patch)
tree4a53bd4f23fdf85053a2efc020ab1d91a9b09376
parent5e9d8172719b8d8879b19bd75b1560d24a4e074e (diff)
staging: dgap: Fix include errs reported by checkpatch
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>
-rw-r--r--drivers/staging/dgap/dgap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/dgap/dgap.c b/drivers/staging/dgap/dgap.c
index 5a92398f989..8fa11ab2dc6 100644
--- a/drivers/staging/dgap/dgap.c
+++ b/drivers/staging/dgap/dgap.c
@@ -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>