aboutsummaryrefslogtreecommitdiffstats
path: root/include/uapi
diff options
context:
space:
mode:
authorPatrick Lerda <patrick9876@free.fr>2019-01-17 03:50:13 -0500
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>2019-02-18 15:39:49 -0500
commit721074b03411327e7bf41555d4cc7c18f49313f7 (patch)
tree6edd587b9b98557ed635d11532c3370175a933e0 /include/uapi
parent12aceee1f412c3ddc7750155fec06c906f14ab51 (diff)
media: rc: rcmm decoder and encoder
media: add support for RCMM infrared remote controls. Signed-off-by: Patrick Lerda <patrick9876@free.fr> Signed-off-by: Sean Young <sean@mess.org> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'include/uapi')
-rw-r--r--include/uapi/linux/lirc.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/uapi/linux/lirc.h b/include/uapi/linux/lirc.h
index 6b319581882f..45fcbf99d72e 100644
--- a/include/uapi/linux/lirc.h
+++ b/include/uapi/linux/lirc.h
@@ -192,6 +192,9 @@ struct lirc_scancode {
192 * @RC_PROTO_XMP: XMP protocol 192 * @RC_PROTO_XMP: XMP protocol
193 * @RC_PROTO_CEC: CEC protocol 193 * @RC_PROTO_CEC: CEC protocol
194 * @RC_PROTO_IMON: iMon Pad protocol 194 * @RC_PROTO_IMON: iMon Pad protocol
195 * @RC_PROTO_RCMM12: RC-MM protocol 12 bits
196 * @RC_PROTO_RCMM24: RC-MM protocol 24 bits
197 * @RC_PROTO_RCMM32: RC-MM protocol 32 bits
195 */ 198 */
196enum rc_proto { 199enum rc_proto {
197 RC_PROTO_UNKNOWN = 0, 200 RC_PROTO_UNKNOWN = 0,
@@ -218,6 +221,9 @@ enum rc_proto {
218 RC_PROTO_XMP = 21, 221 RC_PROTO_XMP = 21,
219 RC_PROTO_CEC = 22, 222 RC_PROTO_CEC = 22,
220 RC_PROTO_IMON = 23, 223 RC_PROTO_IMON = 23,
224 RC_PROTO_RCMM12 = 24,
225 RC_PROTO_RCMM24 = 25,
226 RC_PROTO_RCMM32 = 26,
221}; 227};
222 228
223#endif 229#endif