Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 261312
b: refs/heads/master
c: 0f8a61f
h: refs/heads/master
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Jul 27, 2011
1 parent 3cb7d57 commit ed90fa5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 00d2e7ad9dd4e88224d091e454371d8a9a80719f
refs/heads/master: 0f8a61fc42a618e25c61549590c35c66c63e2ca7
11 changes: 8 additions & 3 deletions trunk/drivers/media/video/em28xx/em28xx-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand Down Expand Up @@ -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 },
Expand Down

0 comments on commit ed90fa5

Please sign in to comment.