aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/char/pc8736x_gpio.c
diff options
context:
space:
mode:
authorJim Cromie <jim.cromie@gmail.com>2006-06-27 02:54:25 -0700
committerLinus Torvalds <torvalds@g5.osdl.org>2006-06-27 17:32:43 -0700
commitec312310e43acd5bb8b49314c6d472bb60d2d30c (patch)
tree6cb7101d9150b32b9d06446554a6e870eeb75c04 /drivers/char/pc8736x_gpio.c
parent[PATCH] chardev: GPIO for SCx200 & PC-8736x: replace spinlocks w mutexes (diff)
downloadwireguard-linux-ec312310e43acd5bb8b49314c6d472bb60d2d30c.tar.xz
wireguard-linux-ec312310e43acd5bb8b49314c6d472bb60d2d30c.zip
[PATCH] gpio-patchset-fixups: include linux/io.h
Hmm. Im somewhat ambivalent about this patch, since with it, driver wont build for vanilla 17 or older. Its also only 1/2 of your suggestion - when I tried it, I was building against vanilla 17, and asm/uaccess.h cause compilation failure. Looking back, Im perplexed as to why linux/io.h didnt cause same failure ?!? use linux/io.h rather than asm/io.h Signed-off-by: Jim Cromie <jim.cromie@gmail.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/pc8736x_gpio.c')
-rw-r--r--drivers/char/pc8736x_gpio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/pc8736x_gpio.c b/drivers/char/pc8736x_gpio.c
index 72dcf222f141..1c706ccfdbb3 100644
--- a/drivers/char/pc8736x_gpio.c
+++ b/drivers/char/pc8736x_gpio.c
@@ -15,12 +15,12 @@
#include <linux/errno.h>
#include <linux/kernel.h>
#include <linux/init.h>
+#include <linux/io.h>
#include <linux/ioport.h>
#include <linux/mutex.h>
#include <linux/nsc_gpio.h>
#include <linux/platform_device.h>
#include <asm/uaccess.h>
-#include <asm/io.h>
#define DEVNAME "pc8736x_gpio"