Commit 1d03c19e authored by Payal Kshirsagar's avatar Payal Kshirsagar Committed by Mark Brown

ASoC: SOF: remove unneeded variables

Remove unneeded temporary local variables and their declarations.
Change suggested by coccinelle.
Signed-off-by: default avatarPayal Kshirsagar <payalskshirsagar1234@gmail.com>
Signed-off-by: default avatarPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: default avatarRanjani Sridharan <ranjani.sridharan@linux.intel.com>
Link: https://lore.kernel.org/r/20200409184853.15896-2-pierre-louis.bossart@linux.intel.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 8f3d9f35
...@@ -207,7 +207,6 @@ EXPORT_SYMBOL_NS(hda_codec_i915_init, SND_SOC_SOF_HDA_AUDIO_CODEC_I915); ...@@ -207,7 +207,6 @@ EXPORT_SYMBOL_NS(hda_codec_i915_init, SND_SOC_SOF_HDA_AUDIO_CODEC_I915);
int hda_codec_i915_exit(struct snd_sof_dev *sdev) int hda_codec_i915_exit(struct snd_sof_dev *sdev)
{ {
struct hdac_bus *bus = sof_to_bus(sdev); struct hdac_bus *bus = sof_to_bus(sdev);
int ret;
if (!bus->audio_component) if (!bus->audio_component)
return 0; return 0;
...@@ -215,9 +214,7 @@ int hda_codec_i915_exit(struct snd_sof_dev *sdev) ...@@ -215,9 +214,7 @@ int hda_codec_i915_exit(struct snd_sof_dev *sdev)
/* power down unconditionally */ /* power down unconditionally */
snd_hdac_display_power(bus, HDA_CODEC_IDX_CONTROLLER, false); snd_hdac_display_power(bus, HDA_CODEC_IDX_CONTROLLER, false);
ret = snd_hdac_i915_exit(bus); return snd_hdac_i915_exit(bus);
return ret;
} }
EXPORT_SYMBOL_NS(hda_codec_i915_exit, SND_SOC_SOF_HDA_AUDIO_CODEC_I915); EXPORT_SYMBOL_NS(hda_codec_i915_exit, SND_SOC_SOF_HDA_AUDIO_CODEC_I915);
......
...@@ -66,7 +66,6 @@ int sof_nocodec_setup(struct device *dev, ...@@ -66,7 +66,6 @@ int sof_nocodec_setup(struct device *dev,
const struct snd_sof_dsp_ops *ops) const struct snd_sof_dsp_ops *ops)
{ {
struct snd_soc_dai_link *links; struct snd_soc_dai_link *links;
int ret;
/* create dummy BE dai_links */ /* create dummy BE dai_links */
links = devm_kzalloc(dev, sizeof(struct snd_soc_dai_link) * links = devm_kzalloc(dev, sizeof(struct snd_soc_dai_link) *
...@@ -74,9 +73,8 @@ int sof_nocodec_setup(struct device *dev, ...@@ -74,9 +73,8 @@ int sof_nocodec_setup(struct device *dev,
if (!links) if (!links)
return -ENOMEM; return -ENOMEM;
ret = sof_nocodec_bes_setup(dev, ops, links, ops->num_drv, return sof_nocodec_bes_setup(dev, ops, links, ops->num_drv,
&sof_nocodec_card); &sof_nocodec_card);
return ret;
} }
EXPORT_SYMBOL(sof_nocodec_setup); EXPORT_SYMBOL(sof_nocodec_setup);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment