aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandros C. Couloumbis <alex@ozo.com>2010-09-04 22:18:54 +0000
committerAlexandros C. Couloumbis <alex@ozo.com>2010-09-04 22:18:54 +0000
commit6cff1caa68e43a0d8df8d9c08c74944476f3a8d7 (patch)
treee5b8426a3107431ee191e577ff2b370c573ebe15
parentd3bb3031c635f2f4671f583335bee8562faa2a96 (diff)
downloadupstream-6cff1caa68e43a0d8df8d9c08c74944476f3a8d7.tar.gz
upstream-6cff1caa68e43a0d8df8d9c08c74944476f3a8d7.tar.bz2
upstream-6cff1caa68e43a0d8df8d9c08c74944476f3a8d7.zip
linux/generic: fix ioctl on 2.6.36 (http://lwn.net/Articles/394724/)
SVN-Revision: 22921
-rw-r--r--target/linux/generic/patches-2.6.36/411-gpio_ioctl.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/target/linux/generic/patches-2.6.36/411-gpio_ioctl.patch b/target/linux/generic/patches-2.6.36/411-gpio_ioctl.patch
new file mode 100644
index 0000000000..3b7063223e
--- /dev/null
+++ b/target/linux/generic/patches-2.6.36/411-gpio_ioctl.patch
@@ -0,0 +1,11 @@
+--- a/drivers/char/gpio_dev.c
++++ b/drivers/char/gpio_dev.c
+@@ -114,7 +114,7 @@ gpio_close(struct inode * inode, struct
+ }
+
+ struct file_operations gpio_fops = {
+- ioctl: gpio_ioctl,
++ unlocked_ioctl: gpio_ioctl,
+ open: gpio_open,
+ release: gpio_close
+ };