[media] em28xx: Fix a wrong enum at the ac97 control tables
authorMauro Carvalho Chehab <mchehab@redhat.com>
Sat, 18 Jun 2011 10:02:49 +0000 (07:02 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Wed, 27 Jul 2011 20:53:03 +0000 (17:53 -0300)
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/em28xx/em28xx-core.c

index 55d0d9d1019f6c4f6d16b4b1dce6e14fa89157a6..7bf3a86902b00c16096956901db6994cfdcf1357 100644 (file)
@@ -314,12 +314,12 @@ int em28xx_write_ac97(struct em28xx *dev, u8 reg, u16 val)
        return 0;
 }
 
-struct em28xx_vol_table {
+struct em28xx_vol_itable {
        enum em28xx_amux mux;
        u8               reg;
 };
 
-static struct em28xx_vol_table inputs[] = {
+static struct em28xx_vol_itable inputs[] = {
        { EM28XX_AMUX_VIDEO,    AC97_VIDEO_VOL   },
        { EM28XX_AMUX_LINE_IN,  AC97_LINEIN_VOL  },
        { EM28XX_AMUX_PHONE,    AC97_PHONE_VOL   },
@@ -403,7 +403,12 @@ static int em28xx_set_audio_source(struct em28xx *dev)
        return ret;
 }
 
-static const struct em28xx_vol_table outputs[] = {
+struct em28xx_vol_otable {
+       enum em28xx_aout mux;
+       u8               reg;
+};
+
+static const struct em28xx_vol_otable outputs[] = {
        { EM28XX_AOUT_MASTER, AC97_MASTER_VOL      },
        { EM28XX_AOUT_LINE,   AC97_LINE_LEVEL_VOL  },
        { EM28XX_AOUT_MONO,   AC97_MASTER_MONO_VOL },