Commit 4eebfb0a authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

V4L/DVB: standardize names at rc-dib0700 tables

Use a more standard way to name those tables, as they're currently used
by the script that coverts those tables to be loaded via userspace.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 20d64443
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
#include <media/rc-map.h> #include <media/rc-map.h>
static struct ir_scancode dib0700_table[] = { static struct ir_scancode dib0700_nec_table[] = {
/* Key codes for the Pixelview SBTVD remote */ /* Key codes for the Pixelview SBTVD remote */
{ 0x8613, KEY_MUTE }, { 0x8613, KEY_MUTE },
{ 0x8612, KEY_POWER }, { 0x8612, KEY_POWER },
...@@ -98,10 +98,10 @@ static struct ir_scancode dib0700_table[] = { ...@@ -98,10 +98,10 @@ static struct ir_scancode dib0700_table[] = {
{ 0x4542, KEY_SELECT }, /* Select video input, 'Select' for Teletext */ { 0x4542, KEY_SELECT }, /* Select video input, 'Select' for Teletext */
}; };
static struct rc_keymap dib0700_map = { static struct rc_keymap dib0700_nec_map = {
.map = { .map = {
.scan = dib0700_table, .scan = dib0700_nec_table,
.size = ARRAY_SIZE(dib0700_table), .size = ARRAY_SIZE(dib0700_nec_table),
.ir_type = IR_TYPE_NEC, .ir_type = IR_TYPE_NEC,
.name = RC_MAP_DIB0700_NEC_TABLE, .name = RC_MAP_DIB0700_NEC_TABLE,
} }
...@@ -109,12 +109,12 @@ static struct rc_keymap dib0700_map = { ...@@ -109,12 +109,12 @@ static struct rc_keymap dib0700_map = {
static int __init init_rc_map(void) static int __init init_rc_map(void)
{ {
return ir_register_map(&dib0700_map); return ir_register_map(&dib0700_nec_map);
} }
static void __exit exit_rc_map(void) static void __exit exit_rc_map(void)
{ {
ir_unregister_map(&dib0700_map); ir_unregister_map(&dib0700_nec_map);
} }
module_init(init_rc_map) module_init(init_rc_map)
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
#include <media/rc-map.h> #include <media/rc-map.h>
static struct ir_scancode dib0700_table[] = { static struct ir_scancode dib0700_rc5_table[] = {
/* Key codes for the tiny Pinnacle remote*/ /* Key codes for the tiny Pinnacle remote*/
{ 0x0700, KEY_MUTE }, { 0x0700, KEY_MUTE },
{ 0x0701, KEY_MENU }, /* Pinnacle logo */ { 0x0701, KEY_MENU }, /* Pinnacle logo */
...@@ -209,10 +209,10 @@ static struct ir_scancode dib0700_table[] = { ...@@ -209,10 +209,10 @@ static struct ir_scancode dib0700_table[] = {
{ 0x1d3d, KEY_POWER }, { 0x1d3d, KEY_POWER },
}; };
static struct rc_keymap dib0700_map = { static struct rc_keymap dib0700_rc5_map = {
.map = { .map = {
.scan = dib0700_table, .scan = dib0700_rc5_table,
.size = ARRAY_SIZE(dib0700_table), .size = ARRAY_SIZE(dib0700_rc5_table),
.ir_type = IR_TYPE_RC5, .ir_type = IR_TYPE_RC5,
.name = RC_MAP_DIB0700_RC5_TABLE, .name = RC_MAP_DIB0700_RC5_TABLE,
} }
...@@ -220,12 +220,12 @@ static struct rc_keymap dib0700_map = { ...@@ -220,12 +220,12 @@ static struct rc_keymap dib0700_map = {
static int __init init_rc_map(void) static int __init init_rc_map(void)
{ {
return ir_register_map(&dib0700_map); return ir_register_map(&dib0700_rc5_map);
} }
static void __exit exit_rc_map(void) static void __exit exit_rc_map(void)
{ {
ir_unregister_map(&dib0700_map); ir_unregister_map(&dib0700_rc5_map);
} }
module_init(init_rc_map) module_init(init_rc_map)
......
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