aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/media/usb/dvb-usb/ttusb2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/dvb-usb/ttusb2.c b/drivers/media/usb/dvb-usb/ttusb2.c
index e53a1061cb8e..6a50cdea3bce 100644
--- a/drivers/media/usb/dvb-usb/ttusb2.c
+++ b/drivers/media/usb/dvb-usb/ttusb2.c
@@ -440,7 +440,7 @@ static int tt3650_rc_query(struct dvb_usb_device *d)
440 /* got a "press" event */ 440 /* got a "press" event */
441 st->last_rc_key = (rx[3] << 8) | rx[2]; 441 st->last_rc_key = (rx[3] << 8) | rx[2];
442 deb_info("%s: cmd=0x%02x sys=0x%02x\n", __func__, rx[2], rx[3]); 442 deb_info("%s: cmd=0x%02x sys=0x%02x\n", __func__, rx[2], rx[3]);
443 rc_keydown(d->rc_dev, st->last_rc_key, 0); 443 rc_keydown(d->rc_dev, st->last_rc_key, rx[1]);
444 } else if (st->last_rc_key) { 444 } else if (st->last_rc_key) {
445 rc_keyup(d->rc_dev); 445 rc_keyup(d->rc_dev);
446 st->last_rc_key = 0; 446 st->last_rc_key = 0;