[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:
@@ -45,7 +45,7 @@ enum rc_driver_type {
|
||||
* @input_dev: the input child device used to communicate events to userspace
|
||||
* @driver_type: specifies if protocol decoding is done in hardware or software
|
||||
* @idle: used to keep track of RX state
|
||||
* @allowed_protos: bitmask with the supported IR_TYPE_* protocols
|
||||
* @allowed_protos: bitmask with the supported RC_TYPE_* protocols
|
||||
* @scanmask: some hardware decoders are not capable of providing the full
|
||||
* scancode to the application. As this is a hardware limit, we can't do
|
||||
* anything with it. Yet, as the same keycode table can be used with other
|
||||
@@ -107,7 +107,7 @@ struct rc_dev {
|
||||
u32 max_timeout;
|
||||
u32 rx_resolution;
|
||||
u32 tx_resolution;
|
||||
int (*change_protocol)(struct rc_dev *dev, u64 ir_type);
|
||||
int (*change_protocol)(struct rc_dev *dev, u64 rc_type);
|
||||
int (*open)(struct rc_dev *dev);
|
||||
void (*close)(struct rc_dev *dev);
|
||||
int (*s_tx_mask)(struct rc_dev *dev, u32 mask);
|
||||
|
Reference in New Issue
Block a user