Prechádzať zdrojové kódy

dsp: audio_notify: add soft dependency on qcom_q6v5_pas

if remoteproc for qcom_q6v5_pas is not ready and audio_notify_probe
is called, it will call EPROBE_DEFER. Sometimes audio_notify_probe
is called again very late even after gpr/audio_prm/pinctrl_lpi probe
which causes it doesn't receive the adsp_up notidication and soundcard
is not registered. Add soft dependency for audio_nofity to make sure
audio_notify_probe is called after qcom_q6v5_pas is ready.

Change-Id: I5a25f8d47dc2e7694a8078ad0052e7889a28b11d
Signed-off-by: Meng Wang <[email protected]>
Meng Wang 3 rokov pred
rodič
commit
df743705b4
1 zmenil súbory, kde vykonal 1 pridanie a 0 odobranie
  1. 1 0
      dsp/audio_notifier.c

+ 1 - 0
dsp/audio_notifier.c

@@ -676,5 +676,6 @@ static void __exit audio_notifier_exit(void)
 }
 module_exit(audio_notifier_exit);
 
+MODULE_SOFTDEP("pre: qcom_q6v5_pas");
 MODULE_DESCRIPTION("Audio notifier driver");
 MODULE_LICENSE("GPL v2");