diff options
-rw-r--r-- | drivers/media/usb/dvb-usb/dib0700_core.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/media/usb/dvb-usb/dib0700_core.c b/drivers/media/usb/dvb-usb/dib0700_core.c index 92d5408684ac..47ce9d5de4c6 100644 --- a/drivers/media/usb/dvb-usb/dib0700_core.c +++ b/drivers/media/usb/dvb-usb/dib0700_core.c | |||
@@ -704,7 +704,7 @@ static void dib0700_rc_urb_completion(struct urb *purb) | |||
704 | struct dvb_usb_device *d = purb->context; | 704 | struct dvb_usb_device *d = purb->context; |
705 | struct dib0700_rc_response *poll_reply; | 705 | struct dib0700_rc_response *poll_reply; |
706 | enum rc_type protocol; | 706 | enum rc_type protocol; |
707 | u32 uninitialized_var(keycode); | 707 | u32 keycode; |
708 | u8 toggle; | 708 | u8 toggle; |
709 | 709 | ||
710 | deb_info("%s()\n", __func__); | 710 | deb_info("%s()\n", __func__); |
@@ -745,7 +745,8 @@ static void dib0700_rc_urb_completion(struct urb *purb) | |||
745 | poll_reply->nec.data == 0x00 && | 745 | poll_reply->nec.data == 0x00 && |
746 | poll_reply->nec.not_data == 0xff) { | 746 | poll_reply->nec.not_data == 0xff) { |
747 | poll_reply->data_state = 2; | 747 | poll_reply->data_state = 2; |
748 | break; | 748 | rc_repeat(d->rc_dev); |
749 | goto resubmit; | ||
749 | } | 750 | } |
750 | 751 | ||
751 | if ((poll_reply->nec.data ^ poll_reply->nec.not_data) != 0xff) { | 752 | if ((poll_reply->nec.data ^ poll_reply->nec.not_data) != 0xff) { |