aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/ir-kbd-i2c.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/video/ir-kbd-i2c.c')
-rw-r--r--drivers/media/video/ir-kbd-i2c.c18
1 files changed, 3 insertions, 15 deletions
diff --git a/drivers/media/video/ir-kbd-i2c.c b/drivers/media/video/ir-kbd-i2c.c
index a221ad68b330..3ab875d036e1 100644
--- a/drivers/media/video/ir-kbd-i2c.c
+++ b/drivers/media/video/ir-kbd-i2c.c
@@ -55,10 +55,6 @@
55static int debug; 55static int debug;
56module_param(debug, int, 0644); /* debug level (0,1,2) */ 56module_param(debug, int, 0644); /* debug level (0,1,2) */
57 57
58static int hauppauge;
59module_param(hauppauge, int, 0644); /* Choose Hauppauge remote */
60MODULE_PARM_DESC(hauppauge, "Specify Hauppauge remote: 0=black, 1=grey (defaults to 0)");
61
62 58
63#define MODULE_NAME "ir-kbd-i2c" 59#define MODULE_NAME "ir-kbd-i2c"
64#define dprintk(level, fmt, arg...) if (debug >= level) \ 60#define dprintk(level, fmt, arg...) if (debug >= level) \
@@ -105,10 +101,6 @@ static int get_key_haup_common(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw,
105 /* invalid key press */ 101 /* invalid key press */
106 return 0; 102 return 0;
107 103
108 if (dev!=0x1e && dev!=0x1f)
109 /* not a hauppauge remote */
110 return 0;
111
112 if (!range) 104 if (!range)
113 code += 64; 105 code += 64;
114 106
@@ -116,7 +108,7 @@ static int get_key_haup_common(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw,
116 start, range, toggle, dev, code); 108 start, range, toggle, dev, code);
117 109
118 /* return key */ 110 /* return key */
119 *ir_key = code; 111 *ir_key = (dev << 8) | code;
120 *ir_raw = ircode; 112 *ir_raw = ircode;
121 return 1; 113 return 1;
122} 114}
@@ -312,11 +304,7 @@ static int ir_probe(struct i2c_client *client, const struct i2c_device_id *id)
312 name = "Hauppauge"; 304 name = "Hauppauge";
313 ir->get_key = get_key_haup; 305 ir->get_key = get_key_haup;
314 rc_type = RC_TYPE_RC5; 306 rc_type = RC_TYPE_RC5;
315 if (hauppauge == 1) { 307 ir_codes = RC_MAP_HAUPPAUGE;
316 ir_codes = RC_MAP_HAUPPAUGE_NEW;
317 } else {
318 ir_codes = RC_MAP_RC5_TV;
319 }
320 break; 308 break;
321 case 0x30: 309 case 0x30:
322 name = "KNC One"; 310 name = "KNC One";
@@ -340,7 +328,7 @@ static int ir_probe(struct i2c_client *client, const struct i2c_device_id *id)
340 name = "Hauppauge/Zilog Z8"; 328 name = "Hauppauge/Zilog Z8";
341 ir->get_key = get_key_haup_xvr; 329 ir->get_key = get_key_haup_xvr;
342 rc_type = RC_TYPE_RC5; 330 rc_type = RC_TYPE_RC5;
343 ir_codes = hauppauge ? RC_MAP_HAUPPAUGE_NEW : RC_MAP_RC5_TV; 331 ir_codes = RC_MAP_HAUPPAUGE;
344 break; 332 break;
345 } 333 }
346 334