diff options
author | acoul <acoul@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-09-04 22:18:54 +0000 |
---|---|---|
committer | acoul <acoul@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-09-04 22:18:54 +0000 |
commit | 205bd2a192850c3077bcc36030d68e472dbc5d03 (patch) | |
tree | bed143ba4367bf162f9d3f1852d735eee15293d9 /target | |
parent | 495af4aee942230ca0274c27882f5a6f083c3a66 (diff) |
linux/generic: fix ioctl on 2.6.36 (http://lwn.net/Articles/394724/)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22921 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/generic/patches-2.6.36/411-gpio_ioctl.patch | 11 |
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 000000000..3b7063223 --- /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 + }; |