Skip to content

Commit

Permalink
V4L/DVB (4748): Fixed oops for Nova-T USB2
Browse files Browse the repository at this point in the history
When using the remote control with the Nova-T USB there was an Oops because of
the recent DVB-USB-Adapter change.

Signed-off-by: Patrick Boettcher <pb@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Patrick Boettcher authored and Mauro Carvalho Chehab committed Oct 14, 2006
1 parent 5011915 commit 6a74216
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions drivers/media/dvb/dvb-usb/dibusb.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,9 @@
struct dibusb_state {
struct dib_fe_xfer_ops ops;
int mt2060_present;
};

struct dibusb_device_state {
/* for RC5 remote control */
int old_toggle;
int last_repeat_count;
Expand Down
3 changes: 2 additions & 1 deletion drivers/media/dvb/dvb-usb/nova-t-usb2.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ static int nova_t_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
u8 key[5],cmd[2] = { DIBUSB_REQ_POLL_REMOTE, 0x35 }, data,toggle,custom;
u16 raw;
int i;
struct dibusb_state *st = d->priv;
struct dibusb_device_state *st = d->priv;

dvb_usb_generic_rw(d,cmd,2,key,5,0);

Expand Down Expand Up @@ -184,6 +184,7 @@ static struct dvb_usb_device_properties nova_t_properties = {
.size_of_priv = sizeof(struct dibusb_state),
}
},
.size_of_priv = sizeof(struct dibusb_device_state),

.power_ctrl = dibusb2_0_power_ctrl,
.read_mac_address = nova_t_read_mac_address,
Expand Down

0 comments on commit 6a74216

Please sign in to comment.