diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-07-22 09:25:31 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-07-22 09:25:31 -0700 |
commit | 71c4c8b7c3bdeccef4f478c643a9ff382ec07241 (patch) | |
tree | 0653596f04e14976e717398543a958b4567bb8a9 /drivers/input/joydev.c | |
parent | 3730793d457fed79a6d49bae72996d458c8e4f2d (diff) | |
parent | 032e46cbf5fb1d768d7dec5631c224e22b4be46f (diff) | |
download | talos-op-linux-71c4c8b7c3bdeccef4f478c643a9ff382ec07241.tar.gz talos-op-linux-71c4c8b7c3bdeccef4f478c643a9ff382ec07241.zip |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input:
Input: atkbd - add force relese key quirk for Soltech TA12
Input: fix EVIOCGNAME/JSIOCGNAME regression
Input: atkbd - add forced release keys quirk for FSC Amilo Pi 3525
Input: pcspkr - switch driver to dev_pm_ops
Input: xpad - don't resend successfully sent outgoing requests
Input: wistron_btns - recognize Maxdata Pro 7000 notebooks
Diffstat (limited to 'drivers/input/joydev.c')
-rw-r--r-- | drivers/input/joydev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/joydev.c b/drivers/input/joydev.c index 0e12f89276a3..4cfd084fa897 100644 --- a/drivers/input/joydev.c +++ b/drivers/input/joydev.c @@ -536,7 +536,7 @@ static int joydev_ioctl_common(struct joydev *joydev, default: if ((cmd & ~IOCSIZE_MASK) == JSIOCGNAME(0)) { int len; - const char *name = dev_name(&dev->dev); + const char *name = dev->name; if (!name) return 0; |