]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
V4L/DVB (12713): em28xx: Cleanups at ir_i2c handler
authorMauro Carvalho Chehab <mchehab@redhat.com>
Tue, 8 Sep 2009 17:07:05 +0000 (14:07 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Sat, 12 Sep 2009 16:47:44 +0000 (13:47 -0300)
There are some extra parenthesis at the clauses, and some switch() tests
for boards that don't have i2c ir. Remove those extra code.

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/em28xx/em28xx-cards.c

index a3d6d4ab9bc7e08bba24412f9aab461ca70320fd..ec4763f73b2624aa44b383d51f32fcde6ef635ac 100644 (file)
@@ -2213,34 +2213,22 @@ void em28xx_register_i2c_ir(struct em28xx *dev)
 
        /* detect & configure */
        switch (dev->model) {
-       case (EM2800_BOARD_UNKNOWN):
-               break;
-       case (EM2820_BOARD_UNKNOWN):
-               break;
-       case (EM2800_BOARD_TERRATEC_CINERGY_200):
-       case (EM2820_BOARD_TERRATEC_CINERGY_250):
+       case EM2800_BOARD_TERRATEC_CINERGY_200:
+       case EM2820_BOARD_TERRATEC_CINERGY_250:
                dev->init_data.ir_codes = &ir_codes_em_terratec_table;
                dev->init_data.get_key = em28xx_get_key_terratec;
                dev->init_data.name = "i2c IR (EM28XX Terratec)";
                break;
-       case (EM2820_BOARD_PINNACLE_USB_2):
+       case EM2820_BOARD_PINNACLE_USB_2:
                dev->init_data.ir_codes = &ir_codes_pinnacle_grey_table;
                dev->init_data.get_key = em28xx_get_key_pinnacle_usb_grey;
                dev->init_data.name = "i2c IR (EM28XX Pinnacle PCTV)";
                break;
-       case (EM2820_BOARD_HAUPPAUGE_WINTV_USB_2):
+       case EM2820_BOARD_HAUPPAUGE_WINTV_USB_2:
                dev->init_data.ir_codes = &ir_codes_hauppauge_new_table;
                dev->init_data.get_key = em28xx_get_key_em_haup;
                dev->init_data.name = "i2c IR (EM2840 Hauppauge)";
                break;
-       case (EM2820_BOARD_MSI_VOX_USB_2):
-               break;
-       case (EM2800_BOARD_LEADTEK_WINFAST_USBII):
-               break;
-       case (EM2800_BOARD_KWORLD_USB2800):
-               break;
-       case (EM2800_BOARD_GRABBEEX_USB2800):
-               break;
        }
 
        if (dev->init_data.name)