diff options
author | Sean Young <sean@mess.org> | 2017-12-03 19:06:54 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2018-03-21 18:12:29 +0300 |
commit | 447dcc0cf12922fcda67731559dd970bde7b35a6 (patch) | |
tree | 0fc2c5a035448b53e44d19b9bd150fb52ffdc2e9 /include/uapi/linux/lirc.h | |
parent | 8d4068810d9926250dd2435719a080b889eb44c3 (diff) | |
download | linux-447dcc0cf12922fcda67731559dd970bde7b35a6.tar.xz |
media: rc: add new imon protocol decoder and encoder
This makes it possible to use the various iMON remotes with any raw IR
RC device.
Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'include/uapi/linux/lirc.h')
-rw-r--r-- | include/uapi/linux/lirc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/uapi/linux/lirc.h b/include/uapi/linux/lirc.h index 4fe580d36e41..948d9a491083 100644 --- a/include/uapi/linux/lirc.h +++ b/include/uapi/linux/lirc.h @@ -186,6 +186,7 @@ struct lirc_scancode { * @RC_PROTO_SHARP: Sharp protocol * @RC_PROTO_XMP: XMP protocol * @RC_PROTO_CEC: CEC protocol + * @RC_PROTO_IMON: iMon Pad protocol */ enum rc_proto { RC_PROTO_UNKNOWN = 0, @@ -211,6 +212,7 @@ enum rc_proto { RC_PROTO_SHARP = 20, RC_PROTO_XMP = 21, RC_PROTO_CEC = 22, + RC_PROTO_IMON = 23, }; #endif |