diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-11-20 13:10:44 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-11-20 13:10:44 -0200 |
commit | 6247d126d87bc803082fe3023f08c4704e430537 (patch) | |
tree | d024ce6c8de4fd44cf39ea93b583e7630e445033 /linux/drivers | |
parent | 85c98bb35cedc8a0d7ca7dc03ac20dfedab23922 (diff) | |
download | mediapointer-dvb-s2-6247d126d87bc803082fe3023f08c4704e430537.tar.gz mediapointer-dvb-s2-6247d126d87bc803082fe3023f08c4704e430537.tar.bz2 |
em28xx: Fix a stupid cut-and-paste error
From: Mauro Carvalho Chehab <mchehab@redhat.com>
Priority: normal
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'linux/drivers')
-rw-r--r-- | linux/drivers/media/video/em28xx/em28xx-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/em28xx/em28xx-core.c b/linux/drivers/media/video/em28xx/em28xx-core.c index dacb6cc5a..f3e3acefb 100644 --- a/linux/drivers/media/video/em28xx/em28xx-core.c +++ b/linux/drivers/media/video/em28xx/em28xx-core.c @@ -328,7 +328,7 @@ static int set_ac97_input(struct em28xx *dev) em28xx should point to LINE IN, while AC97 should use VIDEO */ if (amux == EM28XX_AMUX_VIDEO2) - amux = dev->ctl_ainput; + amux = EM28XX_AMUX_VIDEO; /* Mute all entres but the one that were selected */ for (i = 0; i < ARRAY_SIZE(inputs); i++) { |