Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 242109
b: refs/heads/master
c: f8931f5
h: refs/heads/master
i:
  242107: f4960d8
v: v3
  • Loading branch information
Malcolm Priestley authored and Mauro Carvalho Chehab committed Mar 22, 2011
1 parent 16328f5 commit f38ba5f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3286dac1ca34b85b069c409414a3e51a9217b159
refs/heads/master: f8931f56f51a795e030318b95e4a0f8ac453e35e
5 changes: 3 additions & 2 deletions trunk/drivers/media/dvb/dvb-usb/lmedm04.c
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ static int lme2510_stream_restart(struct dvb_usb_device *d)
rbuff, sizeof(rbuff));
return ret;
}
static int lme2510_remote_keypress(struct dvb_usb_adapter *adap, u16 keypress)
static int lme2510_remote_keypress(struct dvb_usb_adapter *adap, u32 keypress)
{
struct dvb_usb_device *d = adap->dev;

Expand Down Expand Up @@ -250,7 +250,8 @@ static void lme2510_int_response(struct urb *lme_urb)
case 0xaa:
debug_data_snipet(1, "INT Remote data snipet in", ibuf);
lme2510_remote_keypress(adap,
(u16)(ibuf[4]<<8)+ibuf[5]);
(u32)(ibuf[2] << 24) + (ibuf[3] << 16) +
(ibuf[4] << 8) + ibuf[5]);
break;
case 0xbb:
switch (st->tuner_config) {
Expand Down

0 comments on commit f38ba5f

Please sign in to comment.