Commit b52c2ed3 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab

media: cec/cec-adap.c: use new UI_CMD defines

Instead of hardcoding the UI Command key values, use the new
defines.
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent eeabc18b
...@@ -1976,7 +1976,7 @@ static int cec_receive_notify(struct cec_adapter *adap, struct cec_msg *msg, ...@@ -1976,7 +1976,7 @@ static int cec_receive_notify(struct cec_adapter *adap, struct cec_msg *msg,
* Play function, this message can have variable length * Play function, this message can have variable length
* depending on the specific play function that is used. * depending on the specific play function that is used.
*/ */
case 0x60: case CEC_OP_UI_CMD_PLAY_FUNCTION:
if (msg->len == 2) if (msg->len == 2)
rc_keydown(adap->rc, RC_PROTO_CEC, rc_keydown(adap->rc, RC_PROTO_CEC,
msg->msg[2], 0); msg->msg[2], 0);
...@@ -1993,8 +1993,12 @@ static int cec_receive_notify(struct cec_adapter *adap, struct cec_msg *msg, ...@@ -1993,8 +1993,12 @@ static int cec_receive_notify(struct cec_adapter *adap, struct cec_msg *msg,
* For the time being these messages are not processed by the * For the time being these messages are not processed by the
* framework and are simply forwarded to the user space. * framework and are simply forwarded to the user space.
*/ */
case 0x56: case 0x57: case CEC_OP_UI_CMD_SELECT_BROADCAST_TYPE:
case 0x67: case 0x68: case 0x69: case 0x6a: case CEC_OP_UI_CMD_SELECT_SOUND_PRESENTATION:
case CEC_OP_UI_CMD_TUNE_FUNCTION:
case CEC_OP_UI_CMD_SELECT_MEDIA_FUNCTION:
case CEC_OP_UI_CMD_SELECT_AV_INPUT_FUNCTION:
case CEC_OP_UI_CMD_SELECT_AUDIO_INPUT_FUNCTION:
break; break;
default: default:
rc_keydown(adap->rc, RC_PROTO_CEC, msg->msg[2], 0); rc_keydown(adap->rc, RC_PROTO_CEC, msg->msg[2], 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment