Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b20a6e29 authored by Darius Rad's avatar Darius Rad Committed by Mauro Carvalho Chehab
Browse files

media: rc: imon: Allow iMON RC protocol for ffdc 7e device



Allow selecting the IR protocol, MCE or iMON, for a device that
identifies as follows (with config id 0x7e):

15c2:ffdc SoundGraph Inc. iMON PAD Remote Controller

As the driver is structured to default to iMON when both RC
protocols are supported, existing users of this device (using MCE
protocol) will need to manually switch to MCE (RC-6) protocol from
userspace (with ir-keytable, sysfs).

Signed-off-by: default avatarDarius Rad <alpha@area49.net>
Signed-off-by: default avatarSean Young <sean@mess.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 699bf941
Loading
Loading
Loading
Loading
+6 −1
Original line number Original line Diff line number Diff line
@@ -1826,12 +1826,17 @@ static void imon_get_ffdc_type(struct imon_context *ictx)
		break;
		break;
	/* iMON VFD, MCE IR */
	/* iMON VFD, MCE IR */
	case 0x46:
	case 0x46:
	case 0x7e:
	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 = RC_PROTO_BIT_RC6_MCE;
		allowed_protos = RC_PROTO_BIT_RC6_MCE;
		break;
		break;
	/* iMON VFD, iMON or MCE IR */
	case 0x7e:
		dev_info(ictx->dev, "0xffdc iMON VFD, iMON or MCE IR");
		detected_display_type = IMON_DISPLAY_TYPE_VFD;
		allowed_protos |= RC_PROTO_BIT_RC6_MCE;
		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");