Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 294872
b: refs/heads/master
c: d3d076a
h: refs/heads/master
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Jan 21, 2012
1 parent 2290837 commit 6bcf28c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 24 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: 9165144033944a4c650a9914888bf6b6f7328c7a
refs/heads/master: d3d076aaa7d8a028ae4617f57c14727b473f848d
30 changes: 7 additions & 23 deletions trunk/drivers/media/dvb/dvb-usb/az6007.c
Original file line number Diff line number Diff line change
Expand Up @@ -192,26 +192,16 @@ static int az6007_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
return az6007_write(d, 0xbc, onoff, 0, NULL, 0);
}

/* keys for the enclosed remote control */
static struct rc_map_table rc_map_az6007_table[] = {
{0x0001, KEY_1},
{0x0002, KEY_2},
};

/* remote control stuff (does not work with my box) */
static int az6007_rc_query(struct dvb_usb_device *d, u32 * event, int *state)
static int az6007_rc_query(struct dvb_usb_device *d)
{
struct az6007_device_state *st = d->priv;
struct rc_map_table *keymap = d->props.rc.legacy.rc_map_table;
int i;
unsigned code = 0;

az6007_read(d, AZ6007_READ_IR, 0, 0, st->data, 10);

if (st->data[1] == 0x44) {
*state = REMOTE_NO_KEY_PRESSED;
if (st->data[1] == 0x44)
return 0;
}

if ((st->data[1] ^ st->data[2]) == 0xff)
code = st->data[1];
Expand All @@ -224,16 +214,9 @@ static int az6007_rc_query(struct dvb_usb_device *d, u32 * event, int *state)
code = code << 16 | st->data[3] << 8| st->data[4];

printk("remote query key: %04x\n", code);
print_hex_dump_bytes("Remote: ", DUMP_PREFIX_NONE, st->data, 10);

for (i = 0; i < d->props.rc.legacy.rc_map_size; i++) {
if (rc5_custom(&keymap[i]) == code) {
*event = keymap[i].keycode;
*state = REMOTE_KEY_PRESSED;
rc_keydown(d->rc_dev, code, st->data[5]);

return 0;
}
}
return 0;
}

Expand Down Expand Up @@ -536,11 +519,12 @@ static struct dvb_usb_device_properties az6007_properties = {
.power_ctrl = az6007_power_ctrl,
.read_mac_address = az6007_read_mac_addr,

.rc.legacy = {
.rc_map_table = rc_map_az6007_table,
.rc_map_size = ARRAY_SIZE(rc_map_az6007_table),
.rc.core = {
.rc_interval = 400,
.rc_codes = RC_MAP_DIB0700_NEC_TABLE,
.module_name = "az6007",
.rc_query = az6007_rc_query,
.allowed_protos = RC_TYPE_NEC,
},
.i2c_algo = &az6007_i2c_algo,

Expand Down

0 comments on commit 6bcf28c

Please sign in to comment.