From: Mauro Carvalho Chehab Date: Wed, 12 Jan 2011 17:22:42 +0000 (-0300) Subject: [media] em28xx: Fix IR support for WinTV USB2 X-Git-Tag: Ubuntu-snapdragon-4.4.0-1050.54~19035^2~61 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=5a85025f7dabc5b039335a7d1fb5f9002efa9488;p=mirror_ubuntu-artful-kernel.git [media] em28xx: Fix IR support for WinTV USB2 Due to a lack of a break inside the switch, it were getting the wrong keytable and get_key function. Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/video/em28xx/em28xx-cards.c b/drivers/media/video/em28xx/em28xx-cards.c index 099d5df8c572..ba03a448b41d 100644 --- a/drivers/media/video/em28xx/em28xx-cards.c +++ b/drivers/media/video/em28xx/em28xx-cards.c @@ -2437,6 +2437,7 @@ void em28xx_register_i2c_ir(struct em28xx *dev) dev->init_data.ir_codes = RC_MAP_RC5_HAUPPAUGE_NEW; dev->init_data.get_key = em28xx_get_key_em_haup; dev->init_data.name = "i2c IR (EM2840 Hauppauge)"; + break; case EM2820_BOARD_LEADTEK_WINFAST_USBII_DELUXE: dev->init_data.ir_codes = RC_MAP_WINFAST_USBII_DELUXE; dev->init_data.get_key = em28xx_get_key_winfast_usbii_deluxe;