aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Verkuil <hans.verkuil@cisco.com>2013-08-27 03:27:57 -0400
committerMauro Carvalho Chehab <m.chehab@samsung.com>2013-09-03 08:24:22 -0400
commitf66b2a1c7f2ae3fb0d5b67d07ab4f5055fd3cf16 (patch)
tree824e5b8012c50d943b5a6de1bde75c95b1a0b760
parentd2b903b4427e417a73863cef36ad0796ea6b7404 (diff)
[media] cx88: Fix regression: CX88_AUDIO_WM8775 can't be 0
Cards using the wm8775 specify that in their card struct. Those that do not use it leave the audio_chip field to 0. Unfortunately, the CX88_AUDIO_WM8775 enum is 0 as well, so boards that do not have the wm8775 still try to load and use that driver. Change it to 1 to fix this. This regression was introduced in commit facd23664f1d63c33fbc6da52261c8548ed3fbd4. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Reported-by: Knut Petersen <Knut_Petersen@t-online.de> Tested-by: Knut Petersen <Knut_Petersen@t-online.de> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com> Cc: stable@vger.kernel.org
-rw-r--r--drivers/media/pci/cx88/cx88.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/pci/cx88/cx88.h b/drivers/media/pci/cx88/cx88.h
index afe0eaea81b4..28893a6b249e 100644
--- a/drivers/media/pci/cx88/cx88.h
+++ b/drivers/media/pci/cx88/cx88.h
@@ -259,7 +259,7 @@ struct cx88_input {
259}; 259};
260 260
261enum cx88_audio_chip { 261enum cx88_audio_chip {
262 CX88_AUDIO_WM8775, 262 CX88_AUDIO_WM8775 = 1,
263 CX88_AUDIO_TVAUDIO, 263 CX88_AUDIO_TVAUDIO,
264}; 264};
265 265