]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
ASoC: SOF: intel: move sof_intel_dsp_desc() forward
authorBard Liao <yung-chuan.liao@linux.intel.com>
Fri, 23 Jul 2021 11:54:49 +0000 (19:54 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 Aug 2022 09:38:10 +0000 (11:38 +0200)
[ Upstream commit 2f1315ae94b46bf0d5b4be29be15cc3641364404 ]

sof_intel_dsp_desc() will be used by hda_dsp_check_sdw_irq() in the
following commit.

Signed-off-by: Bard Liao <yung-chuan.liao@linux.intel.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Link: https://lore.kernel.org/r/20210723115451.7245-5-yung-chuan.liao@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
sound/soc/sof/intel/hda.c

index b0faf050132d8ac26a9c9340997a36ee95cd6ff9..b4cc724831370b767edfd3214934184fd32c17da 100644 (file)
 #define EXCEPT_MAX_HDR_SIZE    0x400
 #define HDA_EXT_ROM_STATUS_SIZE 8
 
+static const struct sof_intel_dsp_desc
+       *get_chip_info(struct snd_sof_pdata *pdata)
+{
+       const struct sof_dev_desc *desc = pdata->desc;
+       const struct sof_intel_dsp_desc *chip_info;
+
+       chip_info = desc->chip_info;
+
+       return chip_info;
+}
+
 #if IS_ENABLED(CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE)
 
 /*
@@ -674,17 +685,6 @@ skip_soundwire:
        return 0;
 }
 
-static const struct sof_intel_dsp_desc
-       *get_chip_info(struct snd_sof_pdata *pdata)
-{
-       const struct sof_dev_desc *desc = pdata->desc;
-       const struct sof_intel_dsp_desc *chip_info;
-
-       chip_info = desc->chip_info;
-
-       return chip_info;
-}
-
 static irqreturn_t hda_dsp_interrupt_handler(int irq, void *context)
 {
        struct snd_sof_dev *sdev = context;