diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2011-02-01 06:06:39 +0100 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2011-02-01 06:16:59 +0100 |
commit | aebd636bd60e2dda0ebc907dd5f7f4a45174411c (patch) | |
tree | ce5ae0c890149296e70545fccbb11c4799c4e39c /drivers/media/rc/rc-main.c | |
parent | Input: dvb-usb-remote - convert to new style of get/setkeycode (diff) | |
download | linux-aebd636bd60e2dda0ebc907dd5f7f4a45174411c.tar.xz linux-aebd636bd60e2dda0ebc907dd5f7f4a45174411c.zip |
Input: switch completely over to the new versions of get/setkeycode
All users of old style get/setkeycode methids have been converted so
it is time to retire them.
Acked-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Acked-by: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/media/rc/rc-main.c')
-rw-r--r-- | drivers/media/rc/rc-main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/rc/rc-main.c b/drivers/media/rc/rc-main.c index 512a2f4ada0e..c3769283936f 100644 --- a/drivers/media/rc/rc-main.c +++ b/drivers/media/rc/rc-main.c @@ -966,8 +966,8 @@ struct rc_dev *rc_allocate_device(void) return NULL; } - dev->input_dev->getkeycode_new = ir_getkeycode; - dev->input_dev->setkeycode_new = ir_setkeycode; + dev->input_dev->getkeycode = ir_getkeycode; + dev->input_dev->setkeycode = ir_setkeycode; input_set_drvdata(dev->input_dev, dev); spin_lock_init(&dev->rc_map.lock); |