diff options
author | Alexandros C. Couloumbis <alex@ozo.com> | 2010-09-04 22:18:54 +0000 |
---|---|---|
committer | Alexandros C. Couloumbis <alex@ozo.com> | 2010-09-04 22:18:54 +0000 |
commit | 2a673249eeb990836f30789ac0e59128e5c1f8f4 (patch) | |
tree | bed143ba4367bf162f9d3f1852d735eee15293d9 /target/linux | |
parent | 6629f3f447d0a53e81d17e77887dc56007c83f97 (diff) | |
download | upstream-2a673249eeb990836f30789ac0e59128e5c1f8f4.tar.gz upstream-2a673249eeb990836f30789ac0e59128e5c1f8f4.tar.bz2 upstream-2a673249eeb990836f30789ac0e59128e5c1f8f4.zip |
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/linux')
-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 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 + }; |