Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 285347
b: refs/heads/master
c: c725ff6
h: refs/heads/master
i:
  285345: 219afd5
  285343: 1c4eab0
v: v3
  • Loading branch information
Malcolm Priestley authored and Mauro Carvalho Chehab committed Dec 11, 2011
1 parent d530f50 commit 1f9b9d1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 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: 990f49af3f564b9a0f572e06f22e2ae34c79c37d
refs/heads/master: c725ff69737313647f981813e8f39a372c99b0f0
10 changes: 6 additions & 4 deletions trunk/drivers/media/dvb/dvb-usb/it913x.c
Original file line number Diff line number Diff line change
Expand Up @@ -328,11 +328,13 @@ static int it913x_rc_query(struct dvb_usb_device *d)

if ((ibuf[2] + ibuf[3]) == 0xff) {
key = ibuf[2];
key += ibuf[0] << 8;
deb_info(1, "INT Key =%08x", key);
key += ibuf[0] << 16;
key += ibuf[1] << 8;
deb_info(1, "NEC Extended Key =%08x", key);
if (d->rc_dev != NULL)
rc_keydown(d->rc_dev, key, 0);
}

mutex_unlock(&d->i2c_mutex);

return ret;
Expand Down Expand Up @@ -701,7 +703,7 @@ static struct dvb_usb_device_properties it913x_properties = {
.rc_query = it913x_rc_query,
.rc_interval = IT913X_POLL,
.allowed_protos = RC_TYPE_NEC,
.rc_codes = RC_MAP_KWORLD_315U,
.rc_codes = RC_MAP_MSI_DIGIVOX_III,
},
.i2c_algo = &it913x_i2c_algo,
.num_device_descs = 3,
Expand Down Expand Up @@ -748,5 +750,5 @@ module_exit(it913x_module_exit);

MODULE_AUTHOR("Malcolm Priestley <tvboxspy@gmail.com>");
MODULE_DESCRIPTION("it913x USB 2 Driver");
MODULE_VERSION("1.09");
MODULE_VERSION("1.11");
MODULE_LICENSE("GPL");

0 comments on commit 1f9b9d1

Please sign in to comment.