media: rc: Prefer KEY_NUMERIC_* for number buttons on remotes
Prefer KEY_NUMERIC_* for number buttons on remotes. Now all the remotes use KEY_NUMERIC_[0-9] for the number buttons rather than keys that could be affected by modifiers (Caps-Lock, or Num-Lock) or regional keymaps. Created using: sed -i 's/KEY_\([0-9]\) /KEY_NUMERIC_\1 /' *.c sed -i 's/KEY_\([0-9]\)}/KEY_NUMERIC_\1}/' *.c sed -i 's/``KEY_\([0-9]\)/``KEY_NUMERIC_\1/' Documentation/media/uapi/rc/rc-tables.rst Signed-off-by: Bastien Nocera <hadess@hadess.net> Signed-off-by: Sean Young <sean@mess.org> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:

committed by
Mauro Carvalho Chehab

parent
15a98fb2fc
commit
1910ea428f
@@ -12,16 +12,16 @@ static struct rc_map_table snapstream_firefly[] = {
|
||||
{ 0x2c, KEY_ZOOM }, /* Maximize */
|
||||
{ 0x02, KEY_CLOSE },
|
||||
|
||||
{ 0x0d, KEY_1 },
|
||||
{ 0x0e, KEY_2 },
|
||||
{ 0x0f, KEY_3 },
|
||||
{ 0x10, KEY_4 },
|
||||
{ 0x11, KEY_5 },
|
||||
{ 0x12, KEY_6 },
|
||||
{ 0x13, KEY_7 },
|
||||
{ 0x14, KEY_8 },
|
||||
{ 0x15, KEY_9 },
|
||||
{ 0x17, KEY_0 },
|
||||
{ 0x0d, KEY_NUMERIC_1 },
|
||||
{ 0x0e, KEY_NUMERIC_2 },
|
||||
{ 0x0f, KEY_NUMERIC_3 },
|
||||
{ 0x10, KEY_NUMERIC_4 },
|
||||
{ 0x11, KEY_NUMERIC_5 },
|
||||
{ 0x12, KEY_NUMERIC_6 },
|
||||
{ 0x13, KEY_NUMERIC_7 },
|
||||
{ 0x14, KEY_NUMERIC_8 },
|
||||
{ 0x15, KEY_NUMERIC_9 },
|
||||
{ 0x17, KEY_NUMERIC_0 },
|
||||
{ 0x16, KEY_BACK },
|
||||
{ 0x18, KEY_KPENTER }, /* ent */
|
||||
|
||||
|
Reference in New Issue
Block a user