aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2011-01-24 10:18:36 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2011-03-22 18:24:03 -0400
commit444cc20b3d6141a5fa9a9774a6b710e16af6110d (patch)
tree1341acc39debe2a40b3de25e83edee493ff873ef /drivers
parentaa3f4e446e784372498f009ea37177857f23331e (diff)
[media] rc/keymaps: use KEY_CAMERA for snapshots
On a few places, KEY_MHP were used for snapshots. However, KEY_CAMERA is used for it on all the other keyboards that have a snapshot/Picture button. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com> Signed-off-by: Jarod Wilson <jarod@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/media/dvb/dvb-usb/digitv.c2
-rw-r--r--drivers/media/rc/keymaps/rc-avermedia-m135a.c2
-rw-r--r--drivers/media/rc/keymaps/rc-avermedia-m733a-rm-k6.c2
-rw-r--r--drivers/media/rc/keymaps/rc-budget-ci-old.c3
-rw-r--r--drivers/media/rc/keymaps/rc-encore-enltv.c2
-rw-r--r--drivers/media/rc/keymaps/rc-hauppauge-new.c2
-rw-r--r--drivers/media/rc/keymaps/rc-nebula.c2
-rw-r--r--drivers/media/rc/keymaps/rc-rc5-hauppauge-new.c2
8 files changed, 9 insertions, 8 deletions
diff --git a/drivers/media/dvb/dvb-usb/digitv.c b/drivers/media/dvb/dvb-usb/digitv.c
index f2dbce7edb3b..f6344cdd360f 100644
--- a/drivers/media/dvb/dvb-usb/digitv.c
+++ b/drivers/media/dvb/dvb-usb/digitv.c
@@ -176,7 +176,7 @@ static struct rc_map_table rc_map_digitv_table[] = {
176 { 0xaf59, KEY_AUX }, 176 { 0xaf59, KEY_AUX },
177 { 0x5f5a, KEY_DVD }, 177 { 0x5f5a, KEY_DVD },
178 { 0x6f5a, KEY_POWER }, 178 { 0x6f5a, KEY_POWER },
179 { 0x9f5a, KEY_MHP }, /* labelled 'Picture' */ 179 { 0x9f5a, KEY_CAMERA }, /* labelled 'Picture' */
180 { 0xaf5a, KEY_AUDIO }, 180 { 0xaf5a, KEY_AUDIO },
181 { 0x5f65, KEY_INFO }, 181 { 0x5f65, KEY_INFO },
182 { 0x6f65, KEY_F13 }, /* 16:9 */ 182 { 0x6f65, KEY_F13 }, /* 16:9 */
diff --git a/drivers/media/rc/keymaps/rc-avermedia-m135a.c b/drivers/media/rc/keymaps/rc-avermedia-m135a.c
index 357fea58a46e..3d2cbe4e5e46 100644
--- a/drivers/media/rc/keymaps/rc-avermedia-m135a.c
+++ b/drivers/media/rc/keymaps/rc-avermedia-m135a.c
@@ -108,7 +108,7 @@ static struct rc_map_table avermedia_m135a[] = {
108 { 0x0414, KEY_TEXT }, 108 { 0x0414, KEY_TEXT },
109 { 0x0415, KEY_EPG }, 109 { 0x0415, KEY_EPG },
110 { 0x041a, KEY_TV2 }, /* PIP */ 110 { 0x041a, KEY_TV2 }, /* PIP */
111 { 0x041b, KEY_MHP }, /* Snapshot */ 111 { 0x041b, KEY_CAMERA }, /* Snapshot */
112 112
113 { 0x0417, KEY_RECORD }, 113 { 0x0417, KEY_RECORD },
114 { 0x0416, KEY_PLAYPAUSE }, 114 { 0x0416, KEY_PLAYPAUSE },
diff --git a/drivers/media/rc/keymaps/rc-avermedia-m733a-rm-k6.c b/drivers/media/rc/keymaps/rc-avermedia-m733a-rm-k6.c
index e694e6eac37e..8cd7f28808bd 100644
--- a/drivers/media/rc/keymaps/rc-avermedia-m733a-rm-k6.c
+++ b/drivers/media/rc/keymaps/rc-avermedia-m733a-rm-k6.c
@@ -56,7 +56,7 @@ static struct rc_map_table avermedia_m733a_rm_k6[] = {
56 { 0x0414, KEY_TEXT }, 56 { 0x0414, KEY_TEXT },
57 { 0x0415, KEY_EPG }, 57 { 0x0415, KEY_EPG },
58 { 0x041a, KEY_TV2 }, /* PIP */ 58 { 0x041a, KEY_TV2 }, /* PIP */
59 { 0x041b, KEY_MHP }, /* Snapshot */ 59 { 0x041b, KEY_CAMERA }, /* Snapshot */
60 60
61 { 0x0417, KEY_RECORD }, 61 { 0x0417, KEY_RECORD },
62 { 0x0416, KEY_PLAYPAUSE }, 62 { 0x0416, KEY_PLAYPAUSE },
diff --git a/drivers/media/rc/keymaps/rc-budget-ci-old.c b/drivers/media/rc/keymaps/rc-budget-ci-old.c
index 97fc3862f608..2f66e4310d20 100644
--- a/drivers/media/rc/keymaps/rc-budget-ci-old.c
+++ b/drivers/media/rc/keymaps/rc-budget-ci-old.c
@@ -12,7 +12,8 @@
12 12
13#include <media/rc-map.h> 13#include <media/rc-map.h>
14 14
15/* From reading the following remotes: 15/*
16 * From reading the following remotes:
16 * Zenith Universal 7 / TV Mode 807 / VCR Mode 837 17 * Zenith Universal 7 / TV Mode 807 / VCR Mode 837
17 * Hauppauge (from NOVA-CI-s box product) 18 * Hauppauge (from NOVA-CI-s box product)
18 * This is a "middle of the road" approach, differences are noted 19 * This is a "middle of the road" approach, differences are noted
diff --git a/drivers/media/rc/keymaps/rc-encore-enltv.c b/drivers/media/rc/keymaps/rc-encore-enltv.c
index afa4e92284ef..1a0e590b5d21 100644
--- a/drivers/media/rc/keymaps/rc-encore-enltv.c
+++ b/drivers/media/rc/keymaps/rc-encore-enltv.c
@@ -24,7 +24,7 @@ static struct rc_map_table encore_enltv[] = {
24 { 0x1e, KEY_TV }, 24 { 0x1e, KEY_TV },
25 { 0x00, KEY_VIDEO }, 25 { 0x00, KEY_VIDEO },
26 { 0x01, KEY_AUDIO }, /* music */ 26 { 0x01, KEY_AUDIO }, /* music */
27 { 0x02, KEY_MHP }, /* picture */ 27 { 0x02, KEY_CAMERA }, /* picture */
28 28
29 { 0x1f, KEY_1 }, 29 { 0x1f, KEY_1 },
30 { 0x03, KEY_2 }, 30 { 0x03, KEY_2 },
diff --git a/drivers/media/rc/keymaps/rc-hauppauge-new.c b/drivers/media/rc/keymaps/rc-hauppauge-new.c
index bd11da46e56a..b6a12feb0127 100644
--- a/drivers/media/rc/keymaps/rc-hauppauge-new.c
+++ b/drivers/media/rc/keymaps/rc-hauppauge-new.c
@@ -48,7 +48,7 @@ static struct rc_map_table hauppauge_new[] = {
48 "Multimedia Home Platform" - 48 "Multimedia Home Platform" -
49 no "PICTURES" key in input.h 49 no "PICTURES" key in input.h
50 */ 50 */
51 { 0x1a, KEY_MHP }, 51 { 0x1a, KEY_CAMERA },
52 52
53 { 0x1b, KEY_EPG }, /* Guide */ 53 { 0x1b, KEY_EPG }, /* Guide */
54 { 0x1c, KEY_TV }, 54 { 0x1c, KEY_TV },
diff --git a/drivers/media/rc/keymaps/rc-nebula.c b/drivers/media/rc/keymaps/rc-nebula.c
index 3e6f077eb700..ddae20e9cd96 100644
--- a/drivers/media/rc/keymaps/rc-nebula.c
+++ b/drivers/media/rc/keymaps/rc-nebula.c
@@ -27,7 +27,7 @@ static struct rc_map_table nebula[] = {
27 { 0x0b, KEY_AUX }, 27 { 0x0b, KEY_AUX },
28 { 0x0c, KEY_DVD }, 28 { 0x0c, KEY_DVD },
29 { 0x0d, KEY_POWER }, 29 { 0x0d, KEY_POWER },
30 { 0x0e, KEY_MHP }, /* labelled 'Picture' */ 30 { 0x0e, KEY_CAMERA }, /* labelled 'Picture' */
31 { 0x0f, KEY_AUDIO }, 31 { 0x0f, KEY_AUDIO },
32 { 0x10, KEY_INFO }, 32 { 0x10, KEY_INFO },
33 { 0x11, KEY_F13 }, /* 16:9 */ 33 { 0x11, KEY_F13 }, /* 16:9 */
diff --git a/drivers/media/rc/keymaps/rc-rc5-hauppauge-new.c b/drivers/media/rc/keymaps/rc-rc5-hauppauge-new.c
index dfc9b15f43a9..2ca825b4bef2 100644
--- a/drivers/media/rc/keymaps/rc-rc5-hauppauge-new.c
+++ b/drivers/media/rc/keymaps/rc-rc5-hauppauge-new.c
@@ -51,7 +51,7 @@ static struct rc_map_table rc5_hauppauge_new[] = {
51 "Multimedia Home Platform" - 51 "Multimedia Home Platform" -
52 no "PICTURES" key in input.h 52 no "PICTURES" key in input.h
53 */ 53 */
54 { 0x1e1a, KEY_MHP }, 54 { 0x1e1a, KEY_CAMERA },
55 55
56 { 0x1e1b, KEY_EPG }, /* Guide */ 56 { 0x1e1b, KEY_EPG }, /* Guide */
57 { 0x1e1c, KEY_TV }, 57 { 0x1e1c, KEY_TV },