[media] rc: Rename remote controller type to rc_type instead of ir_type

for i in `find drivers/staging -type f -name *.[ch]` `find include/media -type f -name *.[ch]` `find drivers/media -type f -name *.[ch]`; do sed s,IR_TYPE,RC_TYPE,g <$i >a && mv a $i; done
for i in `find drivers/staging -type f -name *.[ch]` `find include/media -type f -name *.[ch]` `find drivers/media -type f -name *.[ch]`; do sed s,ir_type,rc_type,g <$i >a && mv a $i; done

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Mauro Carvalho Chehab 2010-11-17 14:20:52 -03:00
parent 29e3ec19d5
commit 52b661449a
119 changed files with 249 additions and 249 deletions

View File

@ -1344,11 +1344,11 @@ static struct dvb_usb_device_properties af9015_properties[] = {
.identify_state = af9015_identify_state, .identify_state = af9015_identify_state,
.rc.core = { .rc.core = {
.protocol = IR_TYPE_NEC, .protocol = RC_TYPE_NEC,
.module_name = "af9015", .module_name = "af9015",
.rc_query = af9015_rc_query, .rc_query = af9015_rc_query,
.rc_interval = AF9015_RC_INTERVAL, .rc_interval = AF9015_RC_INTERVAL,
.allowed_protos = IR_TYPE_NEC, .allowed_protos = RC_TYPE_NEC,
}, },
.i2c_algo = &af9015_i2c_algo, .i2c_algo = &af9015_i2c_algo,
@ -1472,11 +1472,11 @@ static struct dvb_usb_device_properties af9015_properties[] = {
.identify_state = af9015_identify_state, .identify_state = af9015_identify_state,
.rc.core = { .rc.core = {
.protocol = IR_TYPE_NEC, .protocol = RC_TYPE_NEC,
.module_name = "af9015", .module_name = "af9015",
.rc_query = af9015_rc_query, .rc_query = af9015_rc_query,
.rc_interval = AF9015_RC_INTERVAL, .rc_interval = AF9015_RC_INTERVAL,
.allowed_protos = IR_TYPE_NEC, .allowed_protos = RC_TYPE_NEC,
}, },
.i2c_algo = &af9015_i2c_algo, .i2c_algo = &af9015_i2c_algo,
@ -1584,11 +1584,11 @@ static struct dvb_usb_device_properties af9015_properties[] = {
.identify_state = af9015_identify_state, .identify_state = af9015_identify_state,
.rc.core = { .rc.core = {
.protocol = IR_TYPE_NEC, .protocol = RC_TYPE_NEC,
.module_name = "af9015", .module_name = "af9015",
.rc_query = af9015_rc_query, .rc_query = af9015_rc_query,
.rc_interval = AF9015_RC_INTERVAL, .rc_interval = AF9015_RC_INTERVAL,
.allowed_protos = IR_TYPE_NEC, .allowed_protos = RC_TYPE_NEC,
}, },
.i2c_algo = &af9015_i2c_algo, .i2c_algo = &af9015_i2c_algo,

View File

@ -476,7 +476,7 @@ static struct dvb_usb_device_properties anysee_properties = {
.rc.core = { .rc.core = {
.rc_codes = RC_MAP_ANYSEE, .rc_codes = RC_MAP_ANYSEE,
.protocol = IR_TYPE_OTHER, .protocol = RC_TYPE_OTHER,
.module_name = "anysee", .module_name = "anysee",
.rc_query = anysee_rc_query, .rc_query = anysee_rc_query,
.rc_interval = 250, /* windows driver uses 500ms */ .rc_interval = 250, /* windows driver uses 500ms */

View File

@ -60,7 +60,7 @@ extern int dib0700_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff);
extern struct i2c_algorithm dib0700_i2c_algo; extern struct i2c_algorithm dib0700_i2c_algo;
extern int dib0700_identify_state(struct usb_device *udev, struct dvb_usb_device_properties *props, extern int dib0700_identify_state(struct usb_device *udev, struct dvb_usb_device_properties *props,
struct dvb_usb_device_description **desc, int *cold); struct dvb_usb_device_description **desc, int *cold);
extern int dib0700_change_protocol(struct rc_dev *dev, u64 ir_type); extern int dib0700_change_protocol(struct rc_dev *dev, u64 rc_type);
extern int dib0700_device_count; extern int dib0700_device_count;
extern int dvb_usb_dib0700_ir_proto; extern int dvb_usb_dib0700_ir_proto;

View File

@ -471,7 +471,7 @@ int dib0700_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
return dib0700_ctrl_wr(adap->dev, b, 4); return dib0700_ctrl_wr(adap->dev, b, 4);
} }
int dib0700_change_protocol(struct rc_dev *rc, u64 ir_type) int dib0700_change_protocol(struct rc_dev *rc, u64 rc_type)
{ {
struct dvb_usb_device *d = rc->priv; struct dvb_usb_device *d = rc->priv;
struct dib0700_state *st = d->priv; struct dib0700_state *st = d->priv;
@ -479,11 +479,11 @@ int dib0700_change_protocol(struct rc_dev *rc, u64 ir_type)
int new_proto, ret; int new_proto, ret;
/* Set the IR mode */ /* Set the IR mode */
if (ir_type == IR_TYPE_RC5) if (rc_type == RC_TYPE_RC5)
new_proto = 1; new_proto = 1;
else if (ir_type == IR_TYPE_NEC) else if (rc_type == RC_TYPE_NEC)
new_proto = 0; new_proto = 0;
else if (ir_type == IR_TYPE_RC6) { else if (rc_type == RC_TYPE_RC6) {
if (st->fw_version < 0x10200) if (st->fw_version < 0x10200)
return -EINVAL; return -EINVAL;
@ -499,7 +499,7 @@ int dib0700_change_protocol(struct rc_dev *rc, u64 ir_type)
return ret; return ret;
} }
d->props.rc.core.protocol = ir_type; d->props.rc.core.protocol = rc_type;
return ret; return ret;
} }
@ -562,7 +562,7 @@ static void dib0700_rc_urb_completion(struct urb *purb)
purb->actual_length); purb->actual_length);
switch (d->props.rc.core.protocol) { switch (d->props.rc.core.protocol) {
case IR_TYPE_NEC: case RC_TYPE_NEC:
toggle = 0; toggle = 0;
/* NEC protocol sends repeat code as 0 0 0 FF */ /* NEC protocol sends repeat code as 0 0 0 FF */

View File

@ -510,7 +510,7 @@ static int dib0700_rc_query_old_firmware(struct dvb_usb_device *d)
d->last_event = 0; d->last_event = 0;
switch (d->props.rc.core.protocol) { switch (d->props.rc.core.protocol) {
case IR_TYPE_NEC: case RC_TYPE_NEC:
/* NEC protocol sends repeat code as 0 0 0 FF */ /* NEC protocol sends repeat code as 0 0 0 FF */
if ((key[3-2] == 0x00) && (key[3-3] == 0x00) && if ((key[3-2] == 0x00) && (key[3-3] == 0x00) &&
(key[3] == 0xff)) (key[3] == 0xff))
@ -1924,9 +1924,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
.rc_interval = DEFAULT_RC_INTERVAL, .rc_interval = DEFAULT_RC_INTERVAL,
.rc_codes = RC_MAP_DIB0700_RC5_TABLE, .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
.rc_query = dib0700_rc_query_old_firmware, .rc_query = dib0700_rc_query_old_firmware,
.allowed_protos = IR_TYPE_RC5 | .allowed_protos = RC_TYPE_RC5 |
IR_TYPE_RC6 | RC_TYPE_RC6 |
IR_TYPE_NEC, RC_TYPE_NEC,
.change_protocol = dib0700_change_protocol, .change_protocol = dib0700_change_protocol,
}, },
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES, }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
@ -1958,9 +1958,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
.rc_interval = DEFAULT_RC_INTERVAL, .rc_interval = DEFAULT_RC_INTERVAL,
.rc_codes = RC_MAP_DIB0700_RC5_TABLE, .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
.rc_query = dib0700_rc_query_old_firmware, .rc_query = dib0700_rc_query_old_firmware,
.allowed_protos = IR_TYPE_RC5 | .allowed_protos = RC_TYPE_RC5 |
IR_TYPE_RC6 | RC_TYPE_RC6 |
IR_TYPE_NEC, RC_TYPE_NEC,
.change_protocol = dib0700_change_protocol, .change_protocol = dib0700_change_protocol,
}, },
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES, }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
@ -2017,9 +2017,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
.rc_interval = DEFAULT_RC_INTERVAL, .rc_interval = DEFAULT_RC_INTERVAL,
.rc_codes = RC_MAP_DIB0700_RC5_TABLE, .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
.rc_query = dib0700_rc_query_old_firmware, .rc_query = dib0700_rc_query_old_firmware,
.allowed_protos = IR_TYPE_RC5 | .allowed_protos = RC_TYPE_RC5 |
IR_TYPE_RC6 | RC_TYPE_RC6 |
IR_TYPE_NEC, RC_TYPE_NEC,
.change_protocol = dib0700_change_protocol, .change_protocol = dib0700_change_protocol,
}, },
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES, }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
@ -2059,9 +2059,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
.rc_codes = RC_MAP_DIB0700_RC5_TABLE, .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
.module_name = "dib0700", .module_name = "dib0700",
.rc_query = dib0700_rc_query_old_firmware, .rc_query = dib0700_rc_query_old_firmware,
.allowed_protos = IR_TYPE_RC5 | .allowed_protos = RC_TYPE_RC5 |
IR_TYPE_RC6 | RC_TYPE_RC6 |
IR_TYPE_NEC, RC_TYPE_NEC,
.change_protocol = dib0700_change_protocol, .change_protocol = dib0700_change_protocol,
}, },
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES, }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
@ -2135,9 +2135,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
.rc_codes = RC_MAP_DIB0700_RC5_TABLE, .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
.module_name = "dib0700", .module_name = "dib0700",
.rc_query = dib0700_rc_query_old_firmware, .rc_query = dib0700_rc_query_old_firmware,
.allowed_protos = IR_TYPE_RC5 | .allowed_protos = RC_TYPE_RC5 |
IR_TYPE_RC6 | RC_TYPE_RC6 |
IR_TYPE_NEC, RC_TYPE_NEC,
.change_protocol = dib0700_change_protocol, .change_protocol = dib0700_change_protocol,
}, },
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES, }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
@ -2179,9 +2179,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
.rc_codes = RC_MAP_DIB0700_RC5_TABLE, .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
.module_name = "dib0700", .module_name = "dib0700",
.rc_query = dib0700_rc_query_old_firmware, .rc_query = dib0700_rc_query_old_firmware,
.allowed_protos = IR_TYPE_RC5 | .allowed_protos = RC_TYPE_RC5 |
IR_TYPE_RC6 | RC_TYPE_RC6 |
IR_TYPE_NEC, RC_TYPE_NEC,
.change_protocol = dib0700_change_protocol, .change_protocol = dib0700_change_protocol,
}, },
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES, }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
@ -2247,9 +2247,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
.rc_codes = RC_MAP_DIB0700_RC5_TABLE, .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
.module_name = "dib0700", .module_name = "dib0700",
.rc_query = dib0700_rc_query_old_firmware, .rc_query = dib0700_rc_query_old_firmware,
.allowed_protos = IR_TYPE_RC5 | .allowed_protos = RC_TYPE_RC5 |
IR_TYPE_RC6 | RC_TYPE_RC6 |
IR_TYPE_NEC, RC_TYPE_NEC,
.change_protocol = dib0700_change_protocol, .change_protocol = dib0700_change_protocol,
}, },
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES, }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
@ -2294,9 +2294,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
.rc_codes = RC_MAP_DIB0700_NEC_TABLE, .rc_codes = RC_MAP_DIB0700_NEC_TABLE,
.module_name = "dib0700", .module_name = "dib0700",
.rc_query = dib0700_rc_query_old_firmware, .rc_query = dib0700_rc_query_old_firmware,
.allowed_protos = IR_TYPE_RC5 | .allowed_protos = RC_TYPE_RC5 |
IR_TYPE_RC6 | RC_TYPE_RC6 |
IR_TYPE_NEC, RC_TYPE_NEC,
.change_protocol = dib0700_change_protocol, .change_protocol = dib0700_change_protocol,
}, },
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES, }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
@ -2363,9 +2363,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
.rc_codes = RC_MAP_DIB0700_RC5_TABLE, .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
.module_name = "dib0700", .module_name = "dib0700",
.rc_query = dib0700_rc_query_old_firmware, .rc_query = dib0700_rc_query_old_firmware,
.allowed_protos = IR_TYPE_RC5 | .allowed_protos = RC_TYPE_RC5 |
IR_TYPE_RC6 | RC_TYPE_RC6 |
IR_TYPE_NEC, RC_TYPE_NEC,
.change_protocol = dib0700_change_protocol, .change_protocol = dib0700_change_protocol,
}, },
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES, }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
@ -2399,9 +2399,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
.rc_codes = RC_MAP_DIB0700_RC5_TABLE, .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
.module_name = "dib0700", .module_name = "dib0700",
.rc_query = dib0700_rc_query_old_firmware, .rc_query = dib0700_rc_query_old_firmware,
.allowed_protos = IR_TYPE_RC5 | .allowed_protos = RC_TYPE_RC5 |
IR_TYPE_RC6 | RC_TYPE_RC6 |
IR_TYPE_NEC, RC_TYPE_NEC,
.change_protocol = dib0700_change_protocol, .change_protocol = dib0700_change_protocol,
}, },
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES, }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
@ -2467,9 +2467,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
.rc_codes = RC_MAP_DIB0700_RC5_TABLE, .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
.module_name = "dib0700", .module_name = "dib0700",
.rc_query = dib0700_rc_query_old_firmware, .rc_query = dib0700_rc_query_old_firmware,
.allowed_protos = IR_TYPE_RC5 | .allowed_protos = RC_TYPE_RC5 |
IR_TYPE_RC6 | RC_TYPE_RC6 |
IR_TYPE_NEC, RC_TYPE_NEC,
.change_protocol = dib0700_change_protocol, .change_protocol = dib0700_change_protocol,
}, },
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES, }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
@ -2511,9 +2511,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
.rc_codes = RC_MAP_DIB0700_NEC_TABLE, .rc_codes = RC_MAP_DIB0700_NEC_TABLE,
.module_name = "dib0700", .module_name = "dib0700",
.rc_query = dib0700_rc_query_old_firmware, .rc_query = dib0700_rc_query_old_firmware,
.allowed_protos = IR_TYPE_RC5 | .allowed_protos = RC_TYPE_RC5 |
IR_TYPE_RC6 | RC_TYPE_RC6 |
IR_TYPE_NEC, RC_TYPE_NEC,
.change_protocol = dib0700_change_protocol, .change_protocol = dib0700_change_protocol,
}, },
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES, }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
@ -2560,9 +2560,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
.rc_codes = RC_MAP_DIB0700_RC5_TABLE, .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
.module_name = "dib0700", .module_name = "dib0700",
.rc_query = dib0700_rc_query_old_firmware, .rc_query = dib0700_rc_query_old_firmware,
.allowed_protos = IR_TYPE_RC5 | .allowed_protos = RC_TYPE_RC5 |
IR_TYPE_RC6 | RC_TYPE_RC6 |
IR_TYPE_NEC, RC_TYPE_NEC,
.change_protocol = dib0700_change_protocol, .change_protocol = dib0700_change_protocol,
}, },
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES, }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
@ -2597,9 +2597,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
.rc_codes = RC_MAP_DIB0700_RC5_TABLE, .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
.module_name = "dib0700", .module_name = "dib0700",
.rc_query = dib0700_rc_query_old_firmware, .rc_query = dib0700_rc_query_old_firmware,
.allowed_protos = IR_TYPE_RC5 | .allowed_protos = RC_TYPE_RC5 |
IR_TYPE_RC6 | RC_TYPE_RC6 |
IR_TYPE_NEC, RC_TYPE_NEC,
.change_protocol = dib0700_change_protocol, .change_protocol = dib0700_change_protocol,
}, },
}, },

View File

@ -190,7 +190,7 @@ struct dvb_rc {
char *rc_codes; char *rc_codes;
u64 protocol; u64 protocol;
u64 allowed_protos; u64 allowed_protos;
int (*change_protocol)(struct rc_dev *dev, u64 ir_type); int (*change_protocol)(struct rc_dev *dev, u64 rc_type);
char *module_name; char *module_name;
int (*rc_query) (struct dvb_usb_device *d); int (*rc_query) (struct dvb_usb_device *d);
int rc_interval; int rc_interval;

View File

@ -99,7 +99,7 @@ static struct rc_keymap ir_mantis_map = {
.map = { .map = {
.scan = mantis_ir_table, .scan = mantis_ir_table,
.size = ARRAY_SIZE(mantis_ir_table), .size = ARRAY_SIZE(mantis_ir_table),
.ir_type = IR_TYPE_UNKNOWN, .rc_type = RC_TYPE_UNKNOWN,
.name = RC_MAP_MANTIS, .name = RC_MAP_MANTIS,
} }
}; };

View File

@ -88,7 +88,7 @@ int sms_ir_init(struct smscore_device_t *coredev)
dev->priv = coredev; dev->priv = coredev;
dev->driver_type = RC_DRIVER_IR_RAW; dev->driver_type = RC_DRIVER_IR_RAW;
dev->allowed_protos = IR_TYPE_ALL; dev->allowed_protos = RC_TYPE_ALL;
dev->map_name = sms_get_board(board_id)->rc_codes; dev->map_name = sms_get_board(board_id)->rc_codes;
dev->driver_name = MODULE_NAME; dev->driver_name = MODULE_NAME;

View File

@ -1052,7 +1052,7 @@ static int ene_probe(struct pnp_dev *pnp_dev, const struct pnp_device_id *id)
learning_mode_force = false; learning_mode_force = false;
rdev->driver_type = RC_DRIVER_IR_RAW; rdev->driver_type = RC_DRIVER_IR_RAW;
rdev->allowed_protos = IR_TYPE_ALL; rdev->allowed_protos = RC_TYPE_ALL;
rdev->priv = dev; rdev->priv = dev;
rdev->open = ene_open; rdev->open = ene_open;
rdev->close = ene_close; rdev->close = ene_close;

View File

@ -131,7 +131,7 @@ struct imon_context {
u32 last_keycode; /* last reported input keycode */ u32 last_keycode; /* last reported input keycode */
u32 rc_scancode; /* the computed remote scancode */ u32 rc_scancode; /* the computed remote scancode */
u8 rc_toggle; /* the computed remote toggle bit */ u8 rc_toggle; /* the computed remote toggle bit */
u64 ir_type; /* iMON or MCE (RC6) IR protocol? */ u64 rc_type; /* iMON or MCE (RC6) IR protocol? */
bool release_code; /* some keys send a release code */ bool release_code; /* some keys send a release code */
u8 display_type; /* store the display type */ u8 display_type; /* store the display type */
@ -983,7 +983,7 @@ static void imon_touch_display_timeout(unsigned long data)
* really just RC-6), but only one or the other at a time, as the signals * really just RC-6), but only one or the other at a time, as the signals
* are decoded onboard the receiver. * are decoded onboard the receiver.
*/ */
static int imon_ir_change_protocol(struct rc_dev *rc, u64 ir_type) static int imon_ir_change_protocol(struct rc_dev *rc, u64 rc_type)
{ {
int retval; int retval;
struct imon_context *ictx = rc->priv; struct imon_context *ictx = rc->priv;
@ -992,18 +992,18 @@ static int imon_ir_change_protocol(struct rc_dev *rc, u64 ir_type)
unsigned char ir_proto_packet[] = { unsigned char ir_proto_packet[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86 }; 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86 };
if (ir_type && !(ir_type & rc->allowed_protos)) if (rc_type && !(rc_type & rc->allowed_protos))
dev_warn(dev, "Looks like you're trying to use an IR protocol " dev_warn(dev, "Looks like you're trying to use an IR protocol "
"this device does not support\n"); "this device does not support\n");
switch (ir_type) { switch (rc_type) {
case IR_TYPE_RC6: case RC_TYPE_RC6:
dev_dbg(dev, "Configuring IR receiver for MCE protocol\n"); dev_dbg(dev, "Configuring IR receiver for MCE protocol\n");
ir_proto_packet[0] = 0x01; ir_proto_packet[0] = 0x01;
pad_mouse = false; pad_mouse = false;
break; break;
case IR_TYPE_UNKNOWN: case RC_TYPE_UNKNOWN:
case IR_TYPE_OTHER: case RC_TYPE_OTHER:
dev_dbg(dev, "Configuring IR receiver for iMON protocol\n"); dev_dbg(dev, "Configuring IR receiver for iMON protocol\n");
if (pad_stabilize && !nomouse) if (pad_stabilize && !nomouse)
pad_mouse = true; pad_mouse = true;
@ -1012,7 +1012,7 @@ static int imon_ir_change_protocol(struct rc_dev *rc, u64 ir_type)
pad_mouse = false; pad_mouse = false;
} }
/* ir_proto_packet[0] = 0x00; // already the default */ /* ir_proto_packet[0] = 0x00; // already the default */
ir_type = IR_TYPE_OTHER; rc_type = RC_TYPE_OTHER;
break; break;
default: default:
dev_warn(dev, "Unsupported IR protocol specified, overriding " dev_warn(dev, "Unsupported IR protocol specified, overriding "
@ -1024,7 +1024,7 @@ static int imon_ir_change_protocol(struct rc_dev *rc, u64 ir_type)
pad_mouse = false; pad_mouse = false;
} }
/* ir_proto_packet[0] = 0x00; // already the default */ /* ir_proto_packet[0] = 0x00; // already the default */
ir_type = IR_TYPE_OTHER; rc_type = RC_TYPE_OTHER;
break; break;
} }
@ -1034,7 +1034,7 @@ static int imon_ir_change_protocol(struct rc_dev *rc, u64 ir_type)
if (retval) if (retval)
goto out; goto out;
ictx->ir_type = ir_type; ictx->rc_type = rc_type;
ictx->pad_mouse = pad_mouse; ictx->pad_mouse = pad_mouse;
out: out:
@ -1306,7 +1306,7 @@ static void imon_pad_to_keys(struct imon_context *ictx, unsigned char *buf)
rel_x = buf[2]; rel_x = buf[2];
rel_y = buf[3]; rel_y = buf[3];
if (ictx->ir_type == IR_TYPE_OTHER && pad_stabilize) { if (ictx->rc_type == RC_TYPE_OTHER && pad_stabilize) {
if ((buf[1] == 0) && ((rel_x != 0) || (rel_y != 0))) { if ((buf[1] == 0) && ((rel_x != 0) || (rel_y != 0))) {
dir = stabilize((int)rel_x, (int)rel_y, dir = stabilize((int)rel_x, (int)rel_y,
timeout, threshold); timeout, threshold);
@ -1373,7 +1373,7 @@ static void imon_pad_to_keys(struct imon_context *ictx, unsigned char *buf)
buf[0] = 0x01; buf[0] = 0x01;
buf[1] = buf[4] = buf[5] = buf[6] = buf[7] = 0; buf[1] = buf[4] = buf[5] = buf[6] = buf[7] = 0;
if (ictx->ir_type == IR_TYPE_OTHER && pad_stabilize) { if (ictx->rc_type == RC_TYPE_OTHER && pad_stabilize) {
dir = stabilize((int)rel_x, (int)rel_y, dir = stabilize((int)rel_x, (int)rel_y,
timeout, threshold); timeout, threshold);
if (!dir) { if (!dir) {
@ -1495,7 +1495,7 @@ static void imon_incoming_packet(struct imon_context *ictx,
kc = imon_panel_key_lookup(scancode); kc = imon_panel_key_lookup(scancode);
} else { } else {
scancode = be32_to_cpu(*((u32 *)buf)); scancode = be32_to_cpu(*((u32 *)buf));
if (ictx->ir_type == IR_TYPE_RC6) { if (ictx->rc_type == RC_TYPE_RC6) {
ktype = IMON_KEY_IMON; ktype = IMON_KEY_IMON;
if (buf[0] == 0x80) if (buf[0] == 0x80)
ktype = IMON_KEY_MCE; ktype = IMON_KEY_MCE;
@ -1709,7 +1709,7 @@ static void imon_get_ffdc_type(struct imon_context *ictx)
{ {
u8 ffdc_cfg_byte = ictx->usb_rx_buf[6]; u8 ffdc_cfg_byte = ictx->usb_rx_buf[6];
u8 detected_display_type = IMON_DISPLAY_TYPE_NONE; u8 detected_display_type = IMON_DISPLAY_TYPE_NONE;
u64 allowed_protos = IR_TYPE_OTHER; u64 allowed_protos = RC_TYPE_OTHER;
switch (ffdc_cfg_byte) { switch (ffdc_cfg_byte) {
/* iMON Knob, no display, iMON IR + vol knob */ /* iMON Knob, no display, iMON IR + vol knob */
@ -1738,13 +1738,13 @@ static void imon_get_ffdc_type(struct imon_context *ictx)
case 0x9e: case 0x9e:
dev_info(ictx->dev, "0xffdc iMON VFD, MCE IR"); dev_info(ictx->dev, "0xffdc iMON VFD, MCE IR");
detected_display_type = IMON_DISPLAY_TYPE_VFD; detected_display_type = IMON_DISPLAY_TYPE_VFD;
allowed_protos = IR_TYPE_RC6; allowed_protos = RC_TYPE_RC6;
break; break;
/* iMON LCD, MCE IR */ /* iMON LCD, MCE IR */
case 0x9f: case 0x9f:
dev_info(ictx->dev, "0xffdc iMON LCD, MCE IR"); dev_info(ictx->dev, "0xffdc iMON LCD, MCE IR");
detected_display_type = IMON_DISPLAY_TYPE_LCD; detected_display_type = IMON_DISPLAY_TYPE_LCD;
allowed_protos = IR_TYPE_RC6; allowed_protos = RC_TYPE_RC6;
break; break;
default: default:
dev_info(ictx->dev, "Unknown 0xffdc device, " dev_info(ictx->dev, "Unknown 0xffdc device, "
@ -1757,7 +1757,7 @@ static void imon_get_ffdc_type(struct imon_context *ictx)
ictx->display_type = detected_display_type; ictx->display_type = detected_display_type;
ictx->rdev->allowed_protos = allowed_protos; ictx->rdev->allowed_protos = allowed_protos;
ictx->ir_type = allowed_protos; ictx->rc_type = allowed_protos;
} }
static void imon_set_display_type(struct imon_context *ictx) static void imon_set_display_type(struct imon_context *ictx)
@ -1836,10 +1836,10 @@ static struct rc_dev *imon_init_rdev(struct imon_context *ictx)
rdev->priv = ictx; rdev->priv = ictx;
rdev->driver_type = RC_DRIVER_SCANCODE; rdev->driver_type = RC_DRIVER_SCANCODE;
rdev->allowed_protos = IR_TYPE_OTHER | IR_TYPE_RC6; /* iMON PAD or MCE */ rdev->allowed_protos = RC_TYPE_OTHER | RC_TYPE_RC6; /* iMON PAD or MCE */
rdev->change_protocol = imon_ir_change_protocol; rdev->change_protocol = imon_ir_change_protocol;
rdev->driver_name = MOD_NAME; rdev->driver_name = MOD_NAME;
if (ictx->ir_type == IR_TYPE_RC6) if (ictx->rc_type == RC_TYPE_RC6)
rdev->map_name = RC_MAP_IMON_MCE; rdev->map_name = RC_MAP_IMON_MCE;
else else
rdev->map_name = RC_MAP_IMON_PAD; rdev->map_name = RC_MAP_IMON_PAD;

View File

@ -46,7 +46,7 @@ static int ir_jvc_decode(struct rc_dev *dev, struct ir_raw_event ev)
{ {
struct jvc_dec *data = &dev->raw->jvc; struct jvc_dec *data = &dev->raw->jvc;
if (!(dev->raw->enabled_protocols & IR_TYPE_JVC)) if (!(dev->raw->enabled_protocols & RC_TYPE_JVC))
return 0; return 0;
if (!is_timing_event(ev)) { if (!is_timing_event(ev)) {
@ -173,7 +173,7 @@ out:
} }
static struct ir_raw_handler jvc_handler = { static struct ir_raw_handler jvc_handler = {
.protocols = IR_TYPE_JVC, .protocols = RC_TYPE_JVC,
.decode = ir_jvc_decode, .decode = ir_jvc_decode,
}; };

View File

@ -34,7 +34,7 @@ static int ir_lirc_decode(struct rc_dev *dev, struct ir_raw_event ev)
struct lirc_codec *lirc = &dev->raw->lirc; struct lirc_codec *lirc = &dev->raw->lirc;
int sample; int sample;
if (!(dev->raw->enabled_protocols & IR_TYPE_LIRC)) if (!(dev->raw->enabled_protocols & RC_TYPE_LIRC))
return 0; return 0;
if (!dev->raw->lirc.drv || !dev->raw->lirc.drv->rbuf) if (!dev->raw->lirc.drv || !dev->raw->lirc.drv->rbuf)
@ -373,7 +373,7 @@ static int ir_lirc_unregister(struct rc_dev *dev)
} }
static struct ir_raw_handler lirc_handler = { static struct ir_raw_handler lirc_handler = {
.protocols = IR_TYPE_LIRC, .protocols = RC_TYPE_LIRC,
.decode = ir_lirc_decode, .decode = ir_lirc_decode,
.raw_register = ir_lirc_register, .raw_register = ir_lirc_register,
.raw_unregister = ir_lirc_unregister, .raw_unregister = ir_lirc_unregister,

View File

@ -50,7 +50,7 @@ static int ir_nec_decode(struct rc_dev *dev, struct ir_raw_event ev)
u32 scancode; u32 scancode;
u8 address, not_address, command, not_command; u8 address, not_address, command, not_command;
if (!(dev->raw->enabled_protocols & IR_TYPE_NEC)) if (!(dev->raw->enabled_protocols & RC_TYPE_NEC))
return 0; return 0;
if (!is_timing_event(ev)) { if (!is_timing_event(ev)) {
@ -190,7 +190,7 @@ static int ir_nec_decode(struct rc_dev *dev, struct ir_raw_event ev)
} }
static struct ir_raw_handler nec_handler = { static struct ir_raw_handler nec_handler = {
.protocols = IR_TYPE_NEC, .protocols = RC_TYPE_NEC,
.decode = ir_nec_decode, .decode = ir_nec_decode,
}; };

View File

@ -51,7 +51,7 @@ static int ir_rc5_decode(struct rc_dev *dev, struct ir_raw_event ev)
u8 toggle; u8 toggle;
u32 scancode; u32 scancode;
if (!(dev->raw->enabled_protocols & IR_TYPE_RC5)) if (!(dev->raw->enabled_protocols & RC_TYPE_RC5))
return 0; return 0;
if (!is_timing_event(ev)) { if (!is_timing_event(ev)) {
@ -163,7 +163,7 @@ out:
} }
static struct ir_raw_handler rc5_handler = { static struct ir_raw_handler rc5_handler = {
.protocols = IR_TYPE_RC5, .protocols = RC_TYPE_RC5,
.decode = ir_rc5_decode, .decode = ir_rc5_decode,
}; };

View File

@ -47,7 +47,7 @@ static int ir_rc5_sz_decode(struct rc_dev *dev, struct ir_raw_event ev)
u8 toggle, command, system; u8 toggle, command, system;
u32 scancode; u32 scancode;
if (!(dev->raw->enabled_protocols & IR_TYPE_RC5_SZ)) if (!(dev->raw->enabled_protocols & RC_TYPE_RC5_SZ))
return 0; return 0;
if (!is_timing_event(ev)) { if (!is_timing_event(ev)) {
@ -127,7 +127,7 @@ out:
} }
static struct ir_raw_handler rc5_sz_handler = { static struct ir_raw_handler rc5_sz_handler = {
.protocols = IR_TYPE_RC5_SZ, .protocols = RC_TYPE_RC5_SZ,
.decode = ir_rc5_sz_decode, .decode = ir_rc5_sz_decode,
}; };

View File

@ -81,7 +81,7 @@ static int ir_rc6_decode(struct rc_dev *dev, struct ir_raw_event ev)
u32 scancode; u32 scancode;
u8 toggle; u8 toggle;
if (!(dev->raw->enabled_protocols & IR_TYPE_RC6)) if (!(dev->raw->enabled_protocols & RC_TYPE_RC6))
return 0; return 0;
if (!is_timing_event(ev)) { if (!is_timing_event(ev)) {
@ -255,7 +255,7 @@ out:
} }
static struct ir_raw_handler rc6_handler = { static struct ir_raw_handler rc6_handler = {
.protocols = IR_TYPE_RC6, .protocols = RC_TYPE_RC6,
.decode = ir_rc6_decode, .decode = ir_rc6_decode,
}; };

View File

@ -44,7 +44,7 @@ static int ir_sony_decode(struct rc_dev *dev, struct ir_raw_event ev)
u32 scancode; u32 scancode;
u8 device, subdevice, function; u8 device, subdevice, function;
if (!(dev->raw->enabled_protocols & IR_TYPE_SONY)) if (!(dev->raw->enabled_protocols & RC_TYPE_SONY))
return 0; return 0;
if (!is_timing_event(ev)) { if (!is_timing_event(ev)) {
@ -156,7 +156,7 @@ out:
} }
static struct ir_raw_handler sony_handler = { static struct ir_raw_handler sony_handler = {
.protocols = IR_TYPE_SONY, .protocols = RC_TYPE_SONY,
.decode = ir_sony_decode, .decode = ir_sony_decode,
}; };

View File

@ -67,7 +67,7 @@ static struct rc_keymap adstech_dvb_t_pci_map = {
.map = { .map = {
.scan = adstech_dvb_t_pci, .scan = adstech_dvb_t_pci,
.size = ARRAY_SIZE(adstech_dvb_t_pci), .size = ARRAY_SIZE(adstech_dvb_t_pci),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_ADSTECH_DVB_T_PCI, .name = RC_MAP_ADSTECH_DVB_T_PCI,
} }
}; };

View File

@ -46,7 +46,7 @@ static struct rc_keymap alink_dtu_m_map = {
.map = { .map = {
.scan = alink_dtu_m, .scan = alink_dtu_m,
.size = ARRAY_SIZE(alink_dtu_m), .size = ARRAY_SIZE(alink_dtu_m),
.ir_type = IR_TYPE_NEC, .rc_type = RC_TYPE_NEC,
.name = RC_MAP_ALINK_DTU_M, .name = RC_MAP_ALINK_DTU_M,
} }
}; };

View File

@ -71,7 +71,7 @@ static struct rc_keymap anysee_map = {
.map = { .map = {
.scan = anysee, .scan = anysee,
.size = ARRAY_SIZE(anysee), .size = ARRAY_SIZE(anysee),
.ir_type = IR_TYPE_NEC, .rc_type = RC_TYPE_NEC,
.name = RC_MAP_ANYSEE, .name = RC_MAP_ANYSEE,
} }
}; };

View File

@ -58,7 +58,7 @@ static struct rc_keymap apac_viewcomp_map = {
.map = { .map = {
.scan = apac_viewcomp, .scan = apac_viewcomp,
.size = ARRAY_SIZE(apac_viewcomp), .size = ARRAY_SIZE(apac_viewcomp),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_APAC_VIEWCOMP, .name = RC_MAP_APAC_VIEWCOMP,
} }
}; };

View File

@ -69,7 +69,7 @@ static struct rc_keymap asus_pc39_map = {
.map = { .map = {
.scan = asus_pc39, .scan = asus_pc39,
.size = ARRAY_SIZE(asus_pc39), .size = ARRAY_SIZE(asus_pc39),
.ir_type = IR_TYPE_RC5, .rc_type = RC_TYPE_RC5,
.name = RC_MAP_ASUS_PC39, .name = RC_MAP_ASUS_PC39,
} }
}; };

View File

@ -47,7 +47,7 @@ static struct rc_keymap ati_tv_wonder_hd_600_map = {
.map = { .map = {
.scan = ati_tv_wonder_hd_600, .scan = ati_tv_wonder_hd_600,
.size = ARRAY_SIZE(ati_tv_wonder_hd_600), .size = ARRAY_SIZE(ati_tv_wonder_hd_600),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_ATI_TV_WONDER_HD_600, .name = RC_MAP_ATI_TV_WONDER_HD_600,
} }
}; };

View File

@ -53,7 +53,7 @@ static struct rc_keymap avermedia_a16d_map = {
.map = { .map = {
.scan = avermedia_a16d, .scan = avermedia_a16d,
.size = ARRAY_SIZE(avermedia_a16d), .size = ARRAY_SIZE(avermedia_a16d),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_AVERMEDIA_A16D, .name = RC_MAP_AVERMEDIA_A16D,
} }
}; };

View File

@ -75,7 +75,7 @@ static struct rc_keymap avermedia_cardbus_map = {
.map = { .map = {
.scan = avermedia_cardbus, .scan = avermedia_cardbus,
.size = ARRAY_SIZE(avermedia_cardbus), .size = ARRAY_SIZE(avermedia_cardbus),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_AVERMEDIA_CARDBUS, .name = RC_MAP_AVERMEDIA_CARDBUS,
} }
}; };

View File

@ -56,7 +56,7 @@ static struct rc_keymap avermedia_dvbt_map = {
.map = { .map = {
.scan = avermedia_dvbt, .scan = avermedia_dvbt,
.size = ARRAY_SIZE(avermedia_dvbt), .size = ARRAY_SIZE(avermedia_dvbt),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_AVERMEDIA_DVBT, .name = RC_MAP_AVERMEDIA_DVBT,
} }
}; };

View File

@ -125,7 +125,7 @@ static struct rc_keymap avermedia_m135a_map = {
.map = { .map = {
.scan = avermedia_m135a, .scan = avermedia_m135a,
.size = ARRAY_SIZE(avermedia_m135a), .size = ARRAY_SIZE(avermedia_m135a),
.ir_type = IR_TYPE_NEC, .rc_type = RC_TYPE_NEC,
.name = RC_MAP_AVERMEDIA_M135A, .name = RC_MAP_AVERMEDIA_M135A,
} }
}; };

View File

@ -73,7 +73,7 @@ static struct rc_keymap avermedia_m733a_rm_k6_map = {
.map = { .map = {
.scan = avermedia_m733a_rm_k6, .scan = avermedia_m733a_rm_k6,
.size = ARRAY_SIZE(avermedia_m733a_rm_k6), .size = ARRAY_SIZE(avermedia_m733a_rm_k6),
.ir_type = IR_TYPE_NEC, .rc_type = RC_TYPE_NEC,
.name = RC_MAP_AVERMEDIA_M733A_RM_K6, .name = RC_MAP_AVERMEDIA_M733A_RM_K6,
} }
}; };

View File

@ -57,7 +57,7 @@ static struct rc_keymap avermedia_rm_ks_map = {
.map = { .map = {
.scan = avermedia_rm_ks, .scan = avermedia_rm_ks,
.size = ARRAY_SIZE(avermedia_rm_ks), .size = ARRAY_SIZE(avermedia_rm_ks),
.ir_type = IR_TYPE_NEC, .rc_type = RC_TYPE_NEC,
.name = RC_MAP_AVERMEDIA_RM_KS, .name = RC_MAP_AVERMEDIA_RM_KS,
} }
}; };

View File

@ -64,7 +64,7 @@ static struct rc_keymap avermedia_map = {
.map = { .map = {
.scan = avermedia, .scan = avermedia,
.size = ARRAY_SIZE(avermedia), .size = ARRAY_SIZE(avermedia),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_AVERMEDIA, .name = RC_MAP_AVERMEDIA,
} }
}; };

View File

@ -63,7 +63,7 @@ static struct rc_keymap avertv_303_map = {
.map = { .map = {
.scan = avertv_303, .scan = avertv_303,
.size = ARRAY_SIZE(avertv_303), .size = ARRAY_SIZE(avertv_303),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_AVERTV_303, .name = RC_MAP_AVERTV_303,
} }
}; };

View File

@ -80,7 +80,7 @@ static struct rc_keymap azurewave_ad_tu700_map = {
.map = { .map = {
.scan = azurewave_ad_tu700, .scan = azurewave_ad_tu700,
.size = ARRAY_SIZE(azurewave_ad_tu700), .size = ARRAY_SIZE(azurewave_ad_tu700),
.ir_type = IR_TYPE_NEC, .rc_type = RC_TYPE_NEC,
.name = RC_MAP_AZUREWAVE_AD_TU700, .name = RC_MAP_AZUREWAVE_AD_TU700,
} }
}; };

View File

@ -86,7 +86,7 @@ static struct rc_keymap behold_columbus_map = {
.map = { .map = {
.scan = behold_columbus, .scan = behold_columbus,
.size = ARRAY_SIZE(behold_columbus), .size = ARRAY_SIZE(behold_columbus),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_BEHOLD_COLUMBUS, .name = RC_MAP_BEHOLD_COLUMBUS,
} }
}; };

View File

@ -119,7 +119,7 @@ static struct rc_keymap behold_map = {
.map = { .map = {
.scan = behold, .scan = behold,
.size = ARRAY_SIZE(behold), .size = ARRAY_SIZE(behold),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_BEHOLD, .name = RC_MAP_BEHOLD,
} }
}; };

View File

@ -70,7 +70,7 @@ static struct rc_keymap budget_ci_old_map = {
.map = { .map = {
.scan = budget_ci_old, .scan = budget_ci_old,
.size = ARRAY_SIZE(budget_ci_old), .size = ARRAY_SIZE(budget_ci_old),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_BUDGET_CI_OLD, .name = RC_MAP_BUDGET_CI_OLD,
} }
}; };

View File

@ -62,7 +62,7 @@ static struct rc_keymap cinergy_1400_map = {
.map = { .map = {
.scan = cinergy_1400, .scan = cinergy_1400,
.size = ARRAY_SIZE(cinergy_1400), .size = ARRAY_SIZE(cinergy_1400),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_CINERGY_1400, .name = RC_MAP_CINERGY_1400,
} }
}; };

View File

@ -56,7 +56,7 @@ static struct rc_keymap cinergy_map = {
.map = { .map = {
.scan = cinergy, .scan = cinergy,
.size = ARRAY_SIZE(cinergy), .size = ARRAY_SIZE(cinergy),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_CINERGY, .name = RC_MAP_CINERGY,
} }
}; };

View File

@ -102,7 +102,7 @@ static struct rc_keymap dib0700_nec_map = {
.map = { .map = {
.scan = dib0700_nec_table, .scan = dib0700_nec_table,
.size = ARRAY_SIZE(dib0700_nec_table), .size = ARRAY_SIZE(dib0700_nec_table),
.ir_type = IR_TYPE_NEC, .rc_type = RC_TYPE_NEC,
.name = RC_MAP_DIB0700_NEC_TABLE, .name = RC_MAP_DIB0700_NEC_TABLE,
} }
}; };

View File

@ -213,7 +213,7 @@ static struct rc_keymap dib0700_rc5_map = {
.map = { .map = {
.scan = dib0700_rc5_table, .scan = dib0700_rc5_table,
.size = ARRAY_SIZE(dib0700_rc5_table), .size = ARRAY_SIZE(dib0700_rc5_table),
.ir_type = IR_TYPE_RC5, .rc_type = RC_TYPE_RC5,
.name = RC_MAP_DIB0700_RC5_TABLE, .name = RC_MAP_DIB0700_RC5_TABLE,
} }
}; };

View File

@ -76,7 +76,7 @@ static struct rc_keymap digitalnow_tinytwin_map = {
.map = { .map = {
.scan = digitalnow_tinytwin, .scan = digitalnow_tinytwin,
.size = ARRAY_SIZE(digitalnow_tinytwin), .size = ARRAY_SIZE(digitalnow_tinytwin),
.ir_type = IR_TYPE_NEC, .rc_type = RC_TYPE_NEC,
.name = RC_MAP_DIGITALNOW_TINYTWIN, .name = RC_MAP_DIGITALNOW_TINYTWIN,
} }
}; };

View File

@ -60,7 +60,7 @@ static struct rc_keymap digittrade_map = {
.map = { .map = {
.scan = digittrade, .scan = digittrade,
.size = ARRAY_SIZE(digittrade), .size = ARRAY_SIZE(digittrade),
.ir_type = IR_TYPE_NEC, .rc_type = RC_TYPE_NEC,
.name = RC_MAP_DIGITTRADE, .name = RC_MAP_DIGITTRADE,
} }
}; };

View File

@ -54,7 +54,7 @@ static struct rc_keymap dm1105_nec_map = {
.map = { .map = {
.scan = dm1105_nec, .scan = dm1105_nec,
.size = ARRAY_SIZE(dm1105_nec), .size = ARRAY_SIZE(dm1105_nec),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_DM1105_NEC, .name = RC_MAP_DM1105_NEC,
} }
}; };

View File

@ -56,7 +56,7 @@ static struct rc_keymap dntv_live_dvb_t_map = {
.map = { .map = {
.scan = dntv_live_dvb_t, .scan = dntv_live_dvb_t,
.size = ARRAY_SIZE(dntv_live_dvb_t), .size = ARRAY_SIZE(dntv_live_dvb_t),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_DNTV_LIVE_DVB_T, .name = RC_MAP_DNTV_LIVE_DVB_T,
} }
}; };

View File

@ -75,7 +75,7 @@ static struct rc_keymap dntv_live_dvbt_pro_map = {
.map = { .map = {
.scan = dntv_live_dvbt_pro, .scan = dntv_live_dvbt_pro,
.size = ARRAY_SIZE(dntv_live_dvbt_pro), .size = ARRAY_SIZE(dntv_live_dvbt_pro),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_DNTV_LIVE_DVBT_PRO, .name = RC_MAP_DNTV_LIVE_DVBT_PRO,
} }
}; };

View File

@ -47,7 +47,7 @@ static struct rc_keymap em_terratec_map = {
.map = { .map = {
.scan = em_terratec, .scan = em_terratec,
.size = ARRAY_SIZE(em_terratec), .size = ARRAY_SIZE(em_terratec),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_EM_TERRATEC, .name = RC_MAP_EM_TERRATEC,
} }
}; };

View File

@ -59,7 +59,7 @@ static struct rc_keymap encore_enltv_fm53_map = {
.map = { .map = {
.scan = encore_enltv_fm53, .scan = encore_enltv_fm53,
.size = ARRAY_SIZE(encore_enltv_fm53), .size = ARRAY_SIZE(encore_enltv_fm53),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_ENCORE_ENLTV_FM53, .name = RC_MAP_ENCORE_ENLTV_FM53,
} }
}; };

View File

@ -90,7 +90,7 @@ static struct rc_keymap encore_enltv_map = {
.map = { .map = {
.scan = encore_enltv, .scan = encore_enltv,
.size = ARRAY_SIZE(encore_enltv), .size = ARRAY_SIZE(encore_enltv),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_ENCORE_ENLTV, .name = RC_MAP_ENCORE_ENLTV,
} }
}; };

View File

@ -68,7 +68,7 @@ static struct rc_keymap encore_enltv2_map = {
.map = { .map = {
.scan = encore_enltv2, .scan = encore_enltv2,
.size = ARRAY_SIZE(encore_enltv2), .size = ARRAY_SIZE(encore_enltv2),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_ENCORE_ENLTV2, .name = RC_MAP_ENCORE_ENLTV2,
} }
}; };

View File

@ -39,7 +39,7 @@ static struct rc_keymap evga_indtube_map = {
.map = { .map = {
.scan = evga_indtube, .scan = evga_indtube,
.size = ARRAY_SIZE(evga_indtube), .size = ARRAY_SIZE(evga_indtube),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_EVGA_INDTUBE, .name = RC_MAP_EVGA_INDTUBE,
} }
}; };

View File

@ -74,7 +74,7 @@ static struct rc_keymap eztv_map = {
.map = { .map = {
.scan = eztv, .scan = eztv,
.size = ARRAY_SIZE(eztv), .size = ARRAY_SIZE(eztv),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_EZTV, .name = RC_MAP_EZTV,
} }
}; };

View File

@ -55,7 +55,7 @@ static struct rc_keymap flydvb_map = {
.map = { .map = {
.scan = flydvb, .scan = flydvb,
.size = ARRAY_SIZE(flydvb), .size = ARRAY_SIZE(flydvb),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_FLYDVB, .name = RC_MAP_FLYDVB,
} }
}; };

View File

@ -48,7 +48,7 @@ static struct rc_keymap flyvideo_map = {
.map = { .map = {
.scan = flyvideo, .scan = flyvideo,
.size = ARRAY_SIZE(flyvideo), .size = ARRAY_SIZE(flyvideo),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_FLYVIDEO, .name = RC_MAP_FLYVIDEO,
} }
}; };

View File

@ -76,7 +76,7 @@ static struct rc_keymap fusionhdtv_mce_map = {
.map = { .map = {
.scan = fusionhdtv_mce, .scan = fusionhdtv_mce,
.size = ARRAY_SIZE(fusionhdtv_mce), .size = ARRAY_SIZE(fusionhdtv_mce),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_FUSIONHDTV_MCE, .name = RC_MAP_FUSIONHDTV_MCE,
} }
}; };

View File

@ -59,7 +59,7 @@ static struct rc_keymap gadmei_rm008z_map = {
.map = { .map = {
.scan = gadmei_rm008z, .scan = gadmei_rm008z,
.size = ARRAY_SIZE(gadmei_rm008z), .size = ARRAY_SIZE(gadmei_rm008z),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_GADMEI_RM008Z, .name = RC_MAP_GADMEI_RM008Z,
} }
}; };

View File

@ -62,7 +62,7 @@ static struct rc_keymap genius_tvgo_a11mce_map = {
.map = { .map = {
.scan = genius_tvgo_a11mce, .scan = genius_tvgo_a11mce,
.size = ARRAY_SIZE(genius_tvgo_a11mce), .size = ARRAY_SIZE(genius_tvgo_a11mce),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_GENIUS_TVGO_A11MCE, .name = RC_MAP_GENIUS_TVGO_A11MCE,
} }
}; };

View File

@ -57,7 +57,7 @@ static struct rc_keymap gotview7135_map = {
.map = { .map = {
.scan = gotview7135, .scan = gotview7135,
.size = ARRAY_SIZE(gotview7135), .size = ARRAY_SIZE(gotview7135),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_GOTVIEW7135, .name = RC_MAP_GOTVIEW7135,
} }
}; };

View File

@ -78,7 +78,7 @@ static struct rc_keymap hauppauge_new_map = {
.map = { .map = {
.scan = hauppauge_new, .scan = hauppauge_new,
.size = ARRAY_SIZE(hauppauge_new), .size = ARRAY_SIZE(hauppauge_new),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_HAUPPAUGE_NEW, .name = RC_MAP_HAUPPAUGE_NEW,
} }
}; };

View File

@ -120,7 +120,7 @@ static struct rc_keymap imon_mce_map = {
.scan = imon_mce, .scan = imon_mce,
.size = ARRAY_SIZE(imon_mce), .size = ARRAY_SIZE(imon_mce),
/* its RC6, but w/a hardware decoder */ /* its RC6, but w/a hardware decoder */
.ir_type = IR_TYPE_RC6, .rc_type = RC_TYPE_RC6,
.name = RC_MAP_IMON_MCE, .name = RC_MAP_IMON_MCE,
} }
}; };

View File

@ -134,7 +134,7 @@ static struct rc_keymap imon_pad_map = {
.scan = imon_pad, .scan = imon_pad,
.size = ARRAY_SIZE(imon_pad), .size = ARRAY_SIZE(imon_pad),
/* actual protocol details unknown, hardware decoder */ /* actual protocol details unknown, hardware decoder */
.ir_type = IR_TYPE_OTHER, .rc_type = RC_TYPE_OTHER,
.name = RC_MAP_IMON_PAD, .name = RC_MAP_IMON_PAD,
} }
}; };

View File

@ -66,7 +66,7 @@ static struct rc_keymap iodata_bctv7e_map = {
.map = { .map = {
.scan = iodata_bctv7e, .scan = iodata_bctv7e,
.size = ARRAY_SIZE(iodata_bctv7e), .size = ARRAY_SIZE(iodata_bctv7e),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_IODATA_BCTV7E, .name = RC_MAP_IODATA_BCTV7E,
} }
}; };

View File

@ -65,7 +65,7 @@ static struct rc_keymap kaiomy_map = {
.map = { .map = {
.scan = kaiomy, .scan = kaiomy,
.size = ARRAY_SIZE(kaiomy), .size = ARRAY_SIZE(kaiomy),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_KAIOMY, .name = RC_MAP_KAIOMY,
} }
}; };

View File

@ -61,7 +61,7 @@ static struct rc_keymap kworld_315u_map = {
.map = { .map = {
.scan = kworld_315u, .scan = kworld_315u,
.size = ARRAY_SIZE(kworld_315u), .size = ARRAY_SIZE(kworld_315u),
.ir_type = IR_TYPE_NEC, .rc_type = RC_TYPE_NEC,
.name = RC_MAP_KWORLD_315U, .name = RC_MAP_KWORLD_315U,
} }
}; };

View File

@ -77,7 +77,7 @@ static struct rc_keymap kworld_plus_tv_analog_map = {
.map = { .map = {
.scan = kworld_plus_tv_analog, .scan = kworld_plus_tv_analog,
.size = ARRAY_SIZE(kworld_plus_tv_analog), .size = ARRAY_SIZE(kworld_plus_tv_analog),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_KWORLD_PLUS_TV_ANALOG, .name = RC_MAP_KWORLD_PLUS_TV_ANALOG,
} }
}; };

View File

@ -77,7 +77,7 @@ static struct rc_keymap leadtek_y04g0051_map = {
.map = { .map = {
.scan = leadtek_y04g0051, .scan = leadtek_y04g0051,
.size = ARRAY_SIZE(leadtek_y04g0051), .size = ARRAY_SIZE(leadtek_y04g0051),
.ir_type = IR_TYPE_NEC, .rc_type = RC_TYPE_NEC,
.name = RC_MAP_LEADTEK_Y04G0051, .name = RC_MAP_LEADTEK_Y04G0051,
} }
}; };

View File

@ -19,7 +19,7 @@ static struct rc_keymap lirc_map = {
.map = { .map = {
.scan = lirc, .scan = lirc,
.size = ARRAY_SIZE(lirc), .size = ARRAY_SIZE(lirc),
.ir_type = IR_TYPE_LIRC, .rc_type = RC_TYPE_LIRC,
.name = RC_MAP_LIRC, .name = RC_MAP_LIRC,
} }
}; };

View File

@ -46,7 +46,7 @@ static struct rc_keymap lme2510_map = {
.map = { .map = {
.scan = lme2510_rc, .scan = lme2510_rc,
.size = ARRAY_SIZE(lme2510_rc), .size = ARRAY_SIZE(lme2510_rc),
.ir_type = IR_TYPE_UNKNOWN, .rc_type = RC_TYPE_UNKNOWN,
.name = RC_MAP_LME2510, .name = RC_MAP_LME2510,
} }
}; };

View File

@ -112,7 +112,7 @@ static struct rc_keymap manli_map = {
.map = { .map = {
.scan = manli, .scan = manli,
.size = ARRAY_SIZE(manli), .size = ARRAY_SIZE(manli),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_MANLI, .name = RC_MAP_MANLI,
} }
}; };

View File

@ -45,7 +45,7 @@ static struct rc_keymap msi_digivox_ii_map = {
.map = { .map = {
.scan = msi_digivox_ii, .scan = msi_digivox_ii,
.size = ARRAY_SIZE(msi_digivox_ii), .size = ARRAY_SIZE(msi_digivox_ii),
.ir_type = IR_TYPE_NEC, .rc_type = RC_TYPE_NEC,
.name = RC_MAP_MSI_DIGIVOX_II, .name = RC_MAP_MSI_DIGIVOX_II,
} }
}; };

View File

@ -63,7 +63,7 @@ static struct rc_keymap msi_digivox_iii_map = {
.map = { .map = {
.scan = msi_digivox_iii, .scan = msi_digivox_iii,
.size = ARRAY_SIZE(msi_digivox_iii), .size = ARRAY_SIZE(msi_digivox_iii),
.ir_type = IR_TYPE_NEC, .rc_type = RC_TYPE_NEC,
.name = RC_MAP_MSI_DIGIVOX_III, .name = RC_MAP_MSI_DIGIVOX_III,
} }
}; };

View File

@ -101,7 +101,7 @@ static struct rc_keymap msi_tvanywhere_plus_map = {
.map = { .map = {
.scan = msi_tvanywhere_plus, .scan = msi_tvanywhere_plus,
.size = ARRAY_SIZE(msi_tvanywhere_plus), .size = ARRAY_SIZE(msi_tvanywhere_plus),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_MSI_TVANYWHERE_PLUS, .name = RC_MAP_MSI_TVANYWHERE_PLUS,
} }
}; };

View File

@ -47,7 +47,7 @@ static struct rc_keymap msi_tvanywhere_map = {
.map = { .map = {
.scan = msi_tvanywhere, .scan = msi_tvanywhere,
.size = ARRAY_SIZE(msi_tvanywhere), .size = ARRAY_SIZE(msi_tvanywhere),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_MSI_TVANYWHERE, .name = RC_MAP_MSI_TVANYWHERE,
} }
}; };

View File

@ -74,7 +74,7 @@ static struct rc_keymap nebula_map = {
.map = { .map = {
.scan = nebula, .scan = nebula,
.size = ARRAY_SIZE(nebula), .size = ARRAY_SIZE(nebula),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_NEBULA, .name = RC_MAP_NEBULA,
} }
}; };

View File

@ -83,7 +83,7 @@ static struct rc_keymap nec_terratec_cinergy_xs_map = {
.map = { .map = {
.scan = nec_terratec_cinergy_xs, .scan = nec_terratec_cinergy_xs,
.size = ARRAY_SIZE(nec_terratec_cinergy_xs), .size = ARRAY_SIZE(nec_terratec_cinergy_xs),
.ir_type = IR_TYPE_NEC, .rc_type = RC_TYPE_NEC,
.name = RC_MAP_NEC_TERRATEC_CINERGY_XS, .name = RC_MAP_NEC_TERRATEC_CINERGY_XS,
} }
}; };

View File

@ -63,7 +63,7 @@ static struct rc_keymap norwood_map = {
.map = { .map = {
.scan = norwood, .scan = norwood,
.size = ARRAY_SIZE(norwood), .size = ARRAY_SIZE(norwood),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_NORWOOD, .name = RC_MAP_NORWOOD,
} }
}; };

View File

@ -58,7 +58,7 @@ static struct rc_keymap npgtech_map = {
.map = { .map = {
.scan = npgtech, .scan = npgtech,
.size = ARRAY_SIZE(npgtech), .size = ARRAY_SIZE(npgtech),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_NPGTECH, .name = RC_MAP_NPGTECH,
} }
}; };

View File

@ -58,7 +58,7 @@ static struct rc_keymap pctv_sedna_map = {
.map = { .map = {
.scan = pctv_sedna, .scan = pctv_sedna,
.size = ARRAY_SIZE(pctv_sedna), .size = ARRAY_SIZE(pctv_sedna),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_PCTV_SEDNA, .name = RC_MAP_PCTV_SEDNA,
} }
}; };

View File

@ -72,7 +72,7 @@ static struct rc_keymap pinnacle_color_map = {
.map = { .map = {
.scan = pinnacle_color, .scan = pinnacle_color,
.size = ARRAY_SIZE(pinnacle_color), .size = ARRAY_SIZE(pinnacle_color),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_PINNACLE_COLOR, .name = RC_MAP_PINNACLE_COLOR,
} }
}; };

View File

@ -67,7 +67,7 @@ static struct rc_keymap pinnacle_grey_map = {
.map = { .map = {
.scan = pinnacle_grey, .scan = pinnacle_grey,
.size = ARRAY_SIZE(pinnacle_grey), .size = ARRAY_SIZE(pinnacle_grey),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_PINNACLE_GREY, .name = RC_MAP_PINNACLE_GREY,
} }
}; };

View File

@ -51,7 +51,7 @@ static struct rc_keymap pinnacle_pctv_hd_map = {
.map = { .map = {
.scan = pinnacle_pctv_hd, .scan = pinnacle_pctv_hd,
.size = ARRAY_SIZE(pinnacle_pctv_hd), .size = ARRAY_SIZE(pinnacle_pctv_hd),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_PINNACLE_PCTV_HD, .name = RC_MAP_PINNACLE_PCTV_HD,
} }
}; };

View File

@ -61,7 +61,7 @@ static struct rc_keymap pixelview_map = {
.map = { .map = {
.scan = pixelview_mk12, .scan = pixelview_mk12,
.size = ARRAY_SIZE(pixelview_mk12), .size = ARRAY_SIZE(pixelview_mk12),
.ir_type = IR_TYPE_NEC, .rc_type = RC_TYPE_NEC,
.name = RC_MAP_PIXELVIEW_MK12, .name = RC_MAP_PIXELVIEW_MK12,
} }
}; };

View File

@ -61,7 +61,7 @@ static struct rc_keymap pixelview_new_map = {
.map = { .map = {
.scan = pixelview_new, .scan = pixelview_new,
.size = ARRAY_SIZE(pixelview_new), .size = ARRAY_SIZE(pixelview_new),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_PIXELVIEW_NEW, .name = RC_MAP_PIXELVIEW_NEW,
} }
}; };

View File

@ -60,7 +60,7 @@ static struct rc_keymap pixelview_map = {
.map = { .map = {
.scan = pixelview, .scan = pixelview,
.size = ARRAY_SIZE(pixelview), .size = ARRAY_SIZE(pixelview),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_PIXELVIEW, .name = RC_MAP_PIXELVIEW,
} }
}; };

View File

@ -59,7 +59,7 @@ static struct rc_keymap powercolor_real_angel_map = {
.map = { .map = {
.scan = powercolor_real_angel, .scan = powercolor_real_angel,
.size = ARRAY_SIZE(powercolor_real_angel), .size = ARRAY_SIZE(powercolor_real_angel),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_POWERCOLOR_REAL_ANGEL, .name = RC_MAP_POWERCOLOR_REAL_ANGEL,
} }
}; };

View File

@ -47,7 +47,7 @@ static struct rc_keymap proteus_2309_map = {
.map = { .map = {
.scan = proteus_2309, .scan = proteus_2309,
.size = ARRAY_SIZE(proteus_2309), .size = ARRAY_SIZE(proteus_2309),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_PROTEUS_2309, .name = RC_MAP_PROTEUS_2309,
} }
}; };

View File

@ -59,7 +59,7 @@ static struct rc_keymap purpletv_map = {
.map = { .map = {
.scan = purpletv, .scan = purpletv,
.size = ARRAY_SIZE(purpletv), .size = ARRAY_SIZE(purpletv),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_PURPLETV, .name = RC_MAP_PURPLETV,
} }
}; };

View File

@ -56,7 +56,7 @@ static struct rc_keymap pv951_map = {
.map = { .map = {
.scan = pv951, .scan = pv951,
.size = ARRAY_SIZE(pv951), .size = ARRAY_SIZE(pv951),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_PV951, .name = RC_MAP_PV951,
} }
}; };

View File

@ -81,7 +81,7 @@ static struct rc_keymap rc5_hauppauge_new_map = {
.map = { .map = {
.scan = rc5_hauppauge_new, .scan = rc5_hauppauge_new,
.size = ARRAY_SIZE(rc5_hauppauge_new), .size = ARRAY_SIZE(rc5_hauppauge_new),
.ir_type = IR_TYPE_RC5, .rc_type = RC_TYPE_RC5,
.name = RC_MAP_RC5_HAUPPAUGE_NEW, .name = RC_MAP_RC5_HAUPPAUGE_NEW,
} }
}; };

View File

@ -59,7 +59,7 @@ static struct rc_keymap rc5_tv_map = {
.map = { .map = {
.scan = rc5_tv, .scan = rc5_tv,
.size = ARRAY_SIZE(rc5_tv), .size = ARRAY_SIZE(rc5_tv),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_RC5_TV, .name = RC_MAP_RC5_TV,
} }
}; };

View File

@ -91,7 +91,7 @@ static struct rc_keymap rc6_mce_map = {
.map = { .map = {
.scan = rc6_mce, .scan = rc6_mce,
.size = ARRAY_SIZE(rc6_mce), .size = ARRAY_SIZE(rc6_mce),
.ir_type = IR_TYPE_RC6, .rc_type = RC_TYPE_RC6,
.name = RC_MAP_RC6_MCE, .name = RC_MAP_RC6_MCE,
} }
}; };

View File

@ -56,7 +56,7 @@ static struct rc_keymap real_audio_220_32_keys_map = {
.map = { .map = {
.scan = real_audio_220_32_keys, .scan = real_audio_220_32_keys,
.size = ARRAY_SIZE(real_audio_220_32_keys), .size = ARRAY_SIZE(real_audio_220_32_keys),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_REAL_AUDIO_220_32_KEYS, .name = RC_MAP_REAL_AUDIO_220_32_KEYS,
} }
}; };

View File

@ -60,7 +60,7 @@ static struct rc_keymap streamzap_map = {
.map = { .map = {
.scan = streamzap, .scan = streamzap,
.size = ARRAY_SIZE(streamzap), .size = ARRAY_SIZE(streamzap),
.ir_type = IR_TYPE_RC5_SZ, .rc_type = RC_TYPE_RC5_SZ,
.name = RC_MAP_STREAMZAP, .name = RC_MAP_STREAMZAP,
} }
}; };

View File

@ -51,7 +51,7 @@ static struct rc_keymap tbs_nec_map = {
.map = { .map = {
.scan = tbs_nec, .scan = tbs_nec,
.size = ARRAY_SIZE(tbs_nec), .size = ARRAY_SIZE(tbs_nec),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_TBS_NEC, .name = RC_MAP_TBS_NEC,
} }
}; };

View File

@ -70,7 +70,7 @@ static struct rc_keymap terratec_cinergy_xs_map = {
.map = { .map = {
.scan = terratec_cinergy_xs, .scan = terratec_cinergy_xs,
.size = ARRAY_SIZE(terratec_cinergy_xs), .size = ARRAY_SIZE(terratec_cinergy_xs),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_TERRATEC_CINERGY_XS, .name = RC_MAP_TERRATEC_CINERGY_XS,
} }
}; };

View File

@ -57,7 +57,7 @@ static struct rc_keymap terratec_slim_map = {
.map = { .map = {
.scan = terratec_slim, .scan = terratec_slim,
.size = ARRAY_SIZE(terratec_slim), .size = ARRAY_SIZE(terratec_slim),
.ir_type = IR_TYPE_NEC, .rc_type = RC_TYPE_NEC,
.name = RC_MAP_TERRATEC_SLIM, .name = RC_MAP_TERRATEC_SLIM,
} }
}; };

View File

@ -66,7 +66,7 @@ static struct rc_keymap tevii_nec_map = {
.map = { .map = {
.scan = tevii_nec, .scan = tevii_nec,
.size = ARRAY_SIZE(tevii_nec), .size = ARRAY_SIZE(tevii_nec),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_TEVII_NEC, .name = RC_MAP_TEVII_NEC,
} }
}; };

View File

@ -63,7 +63,7 @@ static struct rc_keymap total_media_in_hand_map = {
.map = { .map = {
.scan = total_media_in_hand, .scan = total_media_in_hand,
.size = ARRAY_SIZE(total_media_in_hand), .size = ARRAY_SIZE(total_media_in_hand),
.ir_type = IR_TYPE_NEC, .rc_type = RC_TYPE_NEC,
.name = RC_MAP_TOTAL_MEDIA_IN_HAND, .name = RC_MAP_TOTAL_MEDIA_IN_HAND,
} }
}; };

View File

@ -58,7 +58,7 @@ static struct rc_keymap trekstor_map = {
.map = { .map = {
.scan = trekstor, .scan = trekstor,
.size = ARRAY_SIZE(trekstor), .size = ARRAY_SIZE(trekstor),
.ir_type = IR_TYPE_NEC, .rc_type = RC_TYPE_NEC,
.name = RC_MAP_TREKSTOR, .name = RC_MAP_TREKSTOR,
} }
}; };

View File

@ -60,7 +60,7 @@ static struct rc_keymap tt_1500_map = {
.map = { .map = {
.scan = tt_1500, .scan = tt_1500,
.size = ARRAY_SIZE(tt_1500), .size = ARRAY_SIZE(tt_1500),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_TT_1500, .name = RC_MAP_TT_1500,
} }
}; };

View File

@ -65,7 +65,7 @@ static struct rc_keymap twinhan_vp1027_map = {
.map = { .map = {
.scan = twinhan_vp1027, .scan = twinhan_vp1027,
.size = ARRAY_SIZE(twinhan_vp1027), .size = ARRAY_SIZE(twinhan_vp1027),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_TWINHAN_VP1027_DVBS, .name = RC_MAP_TWINHAN_VP1027_DVBS,
} }
}; };

View File

@ -63,7 +63,7 @@ static struct rc_keymap videomate_s350_map = {
.map = { .map = {
.scan = videomate_s350, .scan = videomate_s350,
.size = ARRAY_SIZE(videomate_s350), .size = ARRAY_SIZE(videomate_s350),
.ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */ .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
.name = RC_MAP_VIDEOMATE_S350, .name = RC_MAP_VIDEOMATE_S350,
} }
}; };

Some files were not shown because too many files have changed in this diff Show More