ALSA: hda - Fix uninitialized variable

Fix the following compile warning. kctl should be NULL-initialized.

sound/pci/hda/patch_realtek.c: In function ‘alc_build_controls’:
sound/pci/hda/patch_realtek.c:2550:23: warning: ‘kctl’ may be used uninitialized in this function

Signed-off-by: Takashi Iwai <tiwai@suse.de>

+1 -1
+1 -1
sound/pci/hda/patch_realtek.c
··· 2547 static int alc_build_controls(struct hda_codec *codec) 2548 { 2549 struct alc_spec *spec = codec->spec; 2550 - struct snd_kcontrol *kctl; 2551 struct snd_kcontrol_new *knew; 2552 int i, j, err; 2553 unsigned int u;
··· 2547 static int alc_build_controls(struct hda_codec *codec) 2548 { 2549 struct alc_spec *spec = codec->spec; 2550 + struct snd_kcontrol *kctl = NULL; 2551 struct snd_kcontrol_new *knew; 2552 int i, j, err; 2553 unsigned int u;