diff options
author | Stefan Binding <sbinding@opensource.cirrus.com> | 2023-06-06 13:34:36 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2023-06-06 15:32:05 +0300 |
commit | ebcbfd846367c980e105c787d372c4239e9ed922 (patch) | |
tree | 773d53dd9eb1c9279ce93ce52055d71d204a4ea4 /sound/pci | |
parent | 31dbb503f07a059419f16773e47df4a31093ba31 (diff) | |
download | linux-ebcbfd846367c980e105c787d372c4239e9ed922.tar.xz |
ALSA: hda/realtek: Delete cs35l41 component master during free
This ensures that the driver is properly cleaned up when freed.
Signed-off-by: Stefan Binding <sbinding@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20230606103436.455348-4-sbinding@opensource.cirrus.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/hda/patch_realtek.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 172ffc2c332b..ce9a9cb41e4b 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -6757,6 +6757,9 @@ static void cs35l41_generic_fixup(struct hda_codec *cdc, int action, const char else spec->gen.pcm_playback_hook = comp_generic_playback_hook; break; + case HDA_FIXUP_ACT_FREE: + component_master_del(dev, &comp_master_ops); + break; } } |