diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-20 12:37:45 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-20 12:37:45 -0400 |
commit | fb091be08d1acf184e8801dfdcace6e0cb19b1fe (patch) | |
tree | cbd0c4200fd8628d592167589ca790e36fc4ae26 /drivers/media/video/cx23885/cx23885-input.c | |
parent | bd7fc2f2d807fdb254f7efc542f8eec3f23e289e (diff) | |
parent | e8d0416796d43a950ec7b65629e53419b2e22453 (diff) |
Merge branch 'v4l_for_2.6.35' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6
* 'v4l_for_2.6.35' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6: (534 commits)
V4L/DVB (13554a): v4l: Use the video_drvdata function in drivers
V4L/DVB: vivi and mem2mem_testdev need slab.h to build
V4L/DVB: tm6000: bugfix image position
V4L/DVB: IR/imon: remove dead IMON_KEY_RELEASE_OFFSET
V4L/DVB: tm6000: README - add vbi
V4L/DVB: Fix unlock logic at medusa_video_init
V4L/DVB: fix dvb frontend lockup
V4L/DVB: s2255drv: remove dead code
V4L/DVB: s2255drv: return if vdev not found
V4L/DVB: ov511: cleanup: remove unneeded null check
V4L/DVB: media/mem2mem: dereferencing free memory
V4L/DVB: media/IR: Add missing include file to rc-map.c
V4L/DVB: dvb/stv6110x: cleanup error handling
V4L/DVB: ngene: Add lgdt3303 and mt2131 deps to Kconfig
V4L/DVB: ngene: start separating out DVB functions into separate file
V4L/DVB: ngene: split out card specific code into a separate file
V4L/DVB: ngene: split out i2c code into a separate file
V4L/DVB: ngene: add initial support for digital side of Avermedia m780
V4L/DVB: ngene: properly support boards where channel 0 isn't a TS input
V4L-DVB: ngene: make sure that tuner headers are included
...
Diffstat (limited to 'drivers/media/video/cx23885/cx23885-input.c')
-rw-r--r-- | drivers/media/video/cx23885/cx23885-input.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/media/video/cx23885/cx23885-input.c b/drivers/media/video/cx23885/cx23885-input.c index 8e9d990dbe93..8d306d8bb61c 100644 --- a/drivers/media/video/cx23885/cx23885-input.c +++ b/drivers/media/video/cx23885/cx23885-input.c | |||
@@ -51,6 +51,8 @@ | |||
51 | 51 | ||
52 | #define RC5_EXTENDED_COMMAND_OFFSET 64 | 52 | #define RC5_EXTENDED_COMMAND_OFFSET 64 |
53 | 53 | ||
54 | #define MODULE_NAME "cx23885" | ||
55 | |||
54 | static inline unsigned int rc5_command(u32 rc5_baseband) | 56 | static inline unsigned int rc5_command(u32 rc5_baseband) |
55 | { | 57 | { |
56 | return RC5_INSTR(rc5_baseband) + | 58 | return RC5_INSTR(rc5_baseband) + |
@@ -338,7 +340,7 @@ int cx23885_input_init(struct cx23885_dev *dev) | |||
338 | { | 340 | { |
339 | struct card_ir *ir; | 341 | struct card_ir *ir; |
340 | struct input_dev *input_dev; | 342 | struct input_dev *input_dev; |
341 | struct ir_scancode_table *ir_codes = NULL; | 343 | char *ir_codes = NULL; |
342 | int ir_type, ir_addr, ir_start; | 344 | int ir_type, ir_addr, ir_start; |
343 | int ret; | 345 | int ret; |
344 | 346 | ||
@@ -353,7 +355,7 @@ int cx23885_input_init(struct cx23885_dev *dev) | |||
353 | case CX23885_BOARD_HAUPPAUGE_HVR1850: | 355 | case CX23885_BOARD_HAUPPAUGE_HVR1850: |
354 | case CX23885_BOARD_HAUPPAUGE_HVR1290: | 356 | case CX23885_BOARD_HAUPPAUGE_HVR1290: |
355 | /* Parameters for the grey Hauppauge remote for the HVR-1850 */ | 357 | /* Parameters for the grey Hauppauge remote for the HVR-1850 */ |
356 | ir_codes = &ir_codes_hauppauge_new_table; | 358 | ir_codes = RC_MAP_HAUPPAUGE_NEW; |
357 | ir_type = IR_TYPE_RC5; | 359 | ir_type = IR_TYPE_RC5; |
358 | ir_addr = 0x1e; /* RC-5 system bits emitted by the remote */ | 360 | ir_addr = 0x1e; /* RC-5 system bits emitted by the remote */ |
359 | ir_start = RC5_START_BITS_NORMAL; /* A basic RC-5 remote */ | 361 | ir_start = RC5_START_BITS_NORMAL; /* A basic RC-5 remote */ |
@@ -398,7 +400,7 @@ int cx23885_input_init(struct cx23885_dev *dev) | |||
398 | dev->ir_input = ir; | 400 | dev->ir_input = ir; |
399 | cx23885_input_ir_start(dev); | 401 | cx23885_input_ir_start(dev); |
400 | 402 | ||
401 | ret = ir_input_register(ir->dev, ir_codes, NULL); | 403 | ret = ir_input_register(ir->dev, ir_codes, NULL, MODULE_NAME); |
402 | if (ret) | 404 | if (ret) |
403 | goto err_out_stop; | 405 | goto err_out_stop; |
404 | 406 | ||