Forráskód Böngészése

audio-lnx: asoc: sdm660: fix rmmod issue with audio notifier

Deregister sound card with audio notifier when removing driver to
avoid crash.

Change-Id: I4f22fefce519e8dab25901337fdf2e62044090ed
Signed-off-by: Meng Wang <[email protected]>
Meng Wang 7 éve
szülő
commit
c444ff7b6a
1 módosított fájl, 5 hozzáadás és 0 törlés
  1. 5 0
      asoc/sdm660-common.c

+ 5 - 0
asoc/sdm660-common.c

@@ -17,6 +17,7 @@
 #include <linux/of_device.h>
 #include <sound/pcm_params.h>
 #include <dsp/q6afe-v2.h>
+#include <dsp/audio_notifier.h>
 #include "msm-pcm-routing-v2.h"
 #include "sdm660-common.h"
 #include "sdm660-internal.h"
@@ -3370,6 +3371,10 @@ static int msm_asoc_machine_remove(struct platform_device *pdev)
 	gpio_free(pdata->us_euro_gpio);
 	gpio_free(pdata->hph_en1_gpio);
 	gpio_free(pdata->hph_en0_gpio);
+
+	if (pdata->snd_card_val != INT_SND_CARD)
+		audio_notifier_deregister("sdm660");
+
 	snd_soc_unregister_card(card);
 	return 0;
 }