summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Verkuil2011-03-06 13:31:00 +0100
committerMauro Carvalho Chehab2011-03-22 08:54:03 +0100
commitd6972cc8a35514a518ef9c9f608327851cd2e856 (patch)
treeed73c3a2e1869ee024b8515766b15329ff10c898
parent[media] fmdrv_common.c: fix compiler warning (diff)
downloadkernel-qcow2-linux-d6972cc8a35514a518ef9c9f608327851cd2e856.tar.gz
kernel-qcow2-linux-d6972cc8a35514a518ef9c9f608327851cd2e856.tar.xz
kernel-qcow2-linux-d6972cc8a35514a518ef9c9f608327851cd2e856.zip
[media] cx88-alsa: fix compiler warning
drivers/media/video/cx88/cx88-alsa.c: In function 'cx88_audio_initdev': drivers/media/video/cx88/cx88-alsa.c:881:20: warning: 'core' may be used uninitialized in this function The compiler doesn't understand that snd_cx88_create fills in the core pointer. So just initialize it to NULL. Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--drivers/media/video/cx88/cx88-alsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/cx88/cx88-alsa.c b/drivers/media/video/cx88/cx88-alsa.c
index a2d688ebed90..423c1af8a782 100644
--- a/drivers/media/video/cx88/cx88-alsa.c
+++ b/drivers/media/video/cx88/cx88-alsa.c
@@ -878,7 +878,7 @@ static int __devinit cx88_audio_initdev(struct pci_dev *pci,
{
struct snd_card *card;
snd_cx88_card_t *chip;
- struct cx88_core *core;
+ struct cx88_core *core = NULL;
int err;
if (devno >= SNDRV_CARDS)