ASoC: SOF: Move sof_of_machine_select() to core.c from sof-of-dev.c
authorChen-Yu Tsai <wenst@chromium.org>
Mon, 4 Dec 2023 03:35:47 +0000 (11:35 +0800)
committerMark Brown <broonie@kernel.org>
Mon, 4 Dec 2023 17:02:15 +0000 (17:02 +0000)
Commit 014fdeb0d747 ("ASoC: SOF: Move sof_of_machine_select() to
sof-of-dev.c from sof-audio.c") caused a circular dependency between
the snd_sof and snd_sof_of modules:

depmod: ERROR: Cycle detected: snd_sof -> snd_sof_of -> snd_sof
depmod: ERROR: Found 2 modules in dependency cycles!

Move the function back with sof_machine_select().

Fixes: 014fdeb0d747 ("ASoC: SOF: Move sof_of_machine_select() to sof-of-dev.c from sof-audio.c")
Signed-off-by: Chen-Yu Tsai <wenst@chromium.org>
Acked-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
Reviewed-by: Daniel Baluta <daniel.baluta@nxp.com>
Link: https://lore.kernel.org/r/20231204033549.2020289-1-wenst@chromium.org
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/sof/core.c
sound/soc/sof/sof-of-dev.c
sound/soc/sof/sof-of-dev.h

index a2afec8f58799691f5bac866c104ecffbc24e8b3..425b023b03b419957eaf01f8e15930fe6c7e0dc7 100644 (file)
@@ -144,6 +144,28 @@ void sof_set_fw_state(struct snd_sof_dev *sdev, enum sof_fw_state new_state)
 }
 EXPORT_SYMBOL(sof_set_fw_state);
 
+static struct snd_sof_of_mach *sof_of_machine_select(struct snd_sof_dev *sdev)
+{
+       struct snd_sof_pdata *sof_pdata = sdev->pdata;
+       const struct sof_dev_desc *desc = sof_pdata->desc;
+       struct snd_sof_of_mach *mach = desc->of_machines;
+
+       if (!mach)
+               return NULL;
+
+       for (; mach->compatible; mach++) {
+               if (of_machine_is_compatible(mach->compatible)) {
+                       sof_pdata->tplg_filename = mach->sof_tplg_filename;
+                       if (mach->fw_filename)
+                               sof_pdata->fw_filename = mach->fw_filename;
+
+                       return mach;
+               }
+       }
+
+       return NULL;
+}
+
 /* SOF Driver enumeration */
 static int sof_machine_check(struct snd_sof_dev *sdev)
 {
index fa92da5ee9b30713e6bfe77e7d42e681a2563707..b9a499e92b9a57514effeb54dbaf1e8fa43f42dd 100644 (file)
@@ -41,29 +41,6 @@ static void sof_of_probe_complete(struct device *dev)
        pm_runtime_enable(dev);
 }
 
-struct snd_sof_of_mach *sof_of_machine_select(struct snd_sof_dev *sdev)
-{
-       struct snd_sof_pdata *sof_pdata = sdev->pdata;
-       const struct sof_dev_desc *desc = sof_pdata->desc;
-       struct snd_sof_of_mach *mach = desc->of_machines;
-
-       if (!mach)
-               return NULL;
-
-       for (; mach->compatible; mach++) {
-               if (of_machine_is_compatible(mach->compatible)) {
-                       sof_pdata->tplg_filename = mach->sof_tplg_filename;
-                       if (mach->fw_filename)
-                               sof_pdata->fw_filename = mach->fw_filename;
-
-                       return mach;
-               }
-       }
-
-       return NULL;
-}
-EXPORT_SYMBOL(sof_of_machine_select);
-
 int sof_of_probe(struct platform_device *pdev)
 {
        struct device *dev = &pdev->dev;
index 547e358a37e3b473af64103f4c9a44a7874a731e..b6cc70595f3bf174682e70b0ea3f5fc958f2545b 100644 (file)
@@ -16,15 +16,6 @@ struct snd_sof_of_mach {
        const char *sof_tplg_filename;
 };
 
-#if IS_ENABLED(CONFIG_SND_SOC_SOF_OF_DEV)
-struct snd_sof_of_mach *sof_of_machine_select(struct snd_sof_dev *sdev);
-#else
-static inline struct snd_sof_of_mach *sof_of_machine_select(struct snd_sof_dev *sdev)
-{
-       return NULL;
-}
-#endif
-
 extern const struct dev_pm_ops sof_of_pm;
 
 int sof_of_probe(struct platform_device *pdev);