Skip to content

Commit faafd03

Browse files
committed
ALSA: hda - Clear the leftover component assignment at snd_hdac_i915_exit()
The commit [d745f5e: ALSA: hda - Add the pin / port mapping on Intel ILK and VLV] introduced a WARN_ON() to check the pointer for avoiding the double initializations. But hdac_acomp pointer wasn't cleared at snd_hdac_i915_exit(), thus after reloading the HD-audio driver, it may result in the false positive warning. This patch makes sure to clear the leftover pointer at exit. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=94736 Reported-by: Daniela Doras-prodan <[email protected]> Signed-off-by: Takashi Iwai <[email protected]>
1 parent 25c0e95 commit faafd03

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

sound/hda/hdac_i915.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -372,6 +372,7 @@ int snd_hdac_i915_exit(struct hdac_bus *bus)
372372

373373
kfree(acomp);
374374
bus->audio_component = NULL;
375+
hdac_acomp = NULL;
375376

376377
return 0;
377378
}

0 commit comments

Comments
 (0)