[media] rc: abstract access to allowed/enabled protocols
The allowed and enabled protocol masks need to be expanded to be per filter type in order to support wakeup filter protocol selection. To ease that process abstract access to the rc_dev::allowed_protos and rc_dev::enabled_protocols members with inline functions. Signed-off-by: James Hogan <james.hogan@imgtec.com> Reviewed-by: Antti Seppälä <a.seppala@gmail.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Este cometimento está contido em:

cometido por
Mauro Carvalho Chehab

ascendente
b8c7d91508
cometimento
1a1934fab0
@@ -52,7 +52,7 @@ static int ir_rc5_decode(struct rc_dev *dev, struct ir_raw_event ev)
|
||||
u8 toggle;
|
||||
u32 scancode;
|
||||
|
||||
if (!(dev->enabled_protocols & (RC_BIT_RC5 | RC_BIT_RC5X)))
|
||||
if (!rc_protocols_enabled(dev, RC_BIT_RC5 | RC_BIT_RC5X))
|
||||
return 0;
|
||||
|
||||
if (!is_timing_event(ev)) {
|
||||
@@ -128,7 +128,7 @@ again:
|
||||
if (data->wanted_bits == RC5X_NBITS) {
|
||||
/* RC5X */
|
||||
u8 xdata, command, system;
|
||||
if (!(dev->enabled_protocols & RC_BIT_RC5X)) {
|
||||
if (!rc_protocols_enabled(dev, RC_BIT_RC5X)) {
|
||||
data->state = STATE_INACTIVE;
|
||||
return 0;
|
||||
}
|
||||
@@ -145,7 +145,7 @@ again:
|
||||
} else {
|
||||
/* RC5 */
|
||||
u8 command, system;
|
||||
if (!(dev->enabled_protocols & RC_BIT_RC5)) {
|
||||
if (!rc_protocols_enabled(dev, RC_BIT_RC5)) {
|
||||
data->state = STATE_INACTIVE;
|
||||
return 0;
|
||||
}
|
||||
|
Criar uma nova questão referindo esta
Bloquear um utilizador