media: rc: rename RC_TYPE_* to RC_PROTO_* and RC_BIT_* to RC_PROTO_BIT_*
RC_TYPE is confusing and it's just the protocol. So rename it. Suggested-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Sean Young <sean@mess.org> Acked-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:

committed by
Mauro Carvalho Chehab

parent
a9a249a2c9
commit
6d741bfed5
@@ -514,7 +514,7 @@ static int stk7700ph_tuner_attach(struct dvb_usb_adapter *adap)
|
||||
*/
|
||||
static int dib0700_rc_query_old_firmware(struct dvb_usb_device *d)
|
||||
{
|
||||
enum rc_type protocol;
|
||||
enum rc_proto protocol;
|
||||
u32 scancode;
|
||||
u8 toggle;
|
||||
int i;
|
||||
@@ -547,7 +547,7 @@ static int dib0700_rc_query_old_firmware(struct dvb_usb_device *d)
|
||||
dib0700_rc_setup(d, NULL); /* reset ir sensor data to prevent false events */
|
||||
|
||||
switch (d->props.rc.core.protocol) {
|
||||
case RC_BIT_NEC:
|
||||
case RC_PROTO_BIT_NEC:
|
||||
/* NEC protocol sends repeat code as 0 0 0 FF */
|
||||
if ((st->buf[3 - 2] == 0x00) && (st->buf[3 - 3] == 0x00) &&
|
||||
(st->buf[3] == 0xff)) {
|
||||
@@ -555,14 +555,14 @@ static int dib0700_rc_query_old_firmware(struct dvb_usb_device *d)
|
||||
return 0;
|
||||
}
|
||||
|
||||
protocol = RC_TYPE_NEC;
|
||||
protocol = RC_PROTO_NEC;
|
||||
scancode = RC_SCANCODE_NEC(st->buf[3 - 2], st->buf[3 - 3]);
|
||||
toggle = 0;
|
||||
break;
|
||||
|
||||
default:
|
||||
/* RC-5 protocol changes toggle bit on new keypress */
|
||||
protocol = RC_TYPE_RC5;
|
||||
protocol = RC_PROTO_RC5;
|
||||
scancode = RC_SCANCODE_RC5(st->buf[3 - 2], st->buf[3 - 3]);
|
||||
toggle = st->buf[3 - 1];
|
||||
break;
|
||||
@@ -3909,9 +3909,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_interval = DEFAULT_RC_INTERVAL,
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -3949,9 +3949,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_interval = DEFAULT_RC_INTERVAL,
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -4014,9 +4014,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_interval = DEFAULT_RC_INTERVAL,
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -4059,9 +4059,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -4140,9 +4140,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -4185,9 +4185,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -4242,9 +4242,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -4308,9 +4308,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -4357,9 +4357,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_codes = RC_MAP_DIB0700_NEC_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -4430,9 +4430,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -4466,9 +4466,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -4542,9 +4542,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -4586,9 +4586,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_codes = RC_MAP_DIB0700_NEC_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -4635,9 +4635,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -4672,9 +4672,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -4709,9 +4709,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -4746,9 +4746,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -4783,9 +4783,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -4820,9 +4820,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -4871,9 +4871,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -4906,9 +4906,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -4943,9 +4943,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -4981,9 +4981,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
@@ -5035,9 +5035,9 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_BIT_RC5 |
|
||||
RC_BIT_RC6_MCE |
|
||||
RC_BIT_NEC,
|
||||
.allowed_protos = RC_PROTO_BIT_RC5 |
|
||||
RC_PROTO_BIT_RC6_MCE |
|
||||
RC_PROTO_BIT_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
},
|
||||
|
Reference in New Issue
Block a user