From: Subrata Modak Date: Mon, 27 Apr 2009 11:12:37 +0000 (+0530) Subject: ALSA: Fix Trivial Warnining in sound/pci/cmipci.c X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=395a434e39cb6dc6e1ff53bb43722b534a3c68d6;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git ALSA: Fix Trivial Warnining in sound/pci/cmipci.c Fixed the compile warning below by initializatin iomidi variable properly. sound/pci/cmipci.c: In function ‘snd_cmipci_probe’: sound/pci/cmipci.c:3017: warning: ‘iomidi’ may be used uninitialized in this function Signed-off-by: Subrata Modak Cc: linux-pci Cc: Balbir Singh Cc: Sachin P Sant Signed-off-by: Takashi Iwai --- diff --git a/sound/pci/cmipci.c b/sound/pci/cmipci.c index c7899c32aba1..449fe02f666e 100644 --- a/sound/pci/cmipci.c +++ b/sound/pci/cmipci.c @@ -3014,7 +3014,7 @@ static int __devinit snd_cmipci_create(struct snd_card *card, struct pci_dev *pc .dev_free = snd_cmipci_dev_free, }; unsigned int val; - long iomidi; + long iomidi = 0; int integrated_midi = 0; char modelstr[16]; int pcm_index, pcm_spdif_index;