ASoC: topology: fix build warning
authorSudip Mukherjee <sudipm.mukherjee@gmail.com>
Mon, 22 Feb 2016 09:07:13 +0000 (14:37 +0530)
committerMark Brown <broonie@kernel.org>
Mon, 22 Feb 2016 10:38:50 +0000 (19:38 +0900)
We are getting build warning about:
sound/soc/soc-topology.c:249:31: warning: 'get_dobj_type' defined but
not used

commit 64527e8a3529 has removed the only caller of get_dobj_type() but
missed to remove the function which is now unused. And after removing
get_dobj_type() we do not have any use of get_dobj_mixer_type().

Fixes: 64527e8a3529 ("ASoC: topology: Add FE DAIs dynamically")
CC: Mengdong Lin <mengdong.lin@linux.intel.com>
Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/soc-topology.c

index 0eb01e8..07f61a6 100644 (file)
@@ -223,51 +223,6 @@ static int get_widget_id(int tplg_type)
        return -EINVAL;
 }
 
-static enum snd_soc_dobj_type get_dobj_mixer_type(
-       struct snd_soc_tplg_ctl_hdr *control_hdr)
-{
-       if (control_hdr == NULL)
-               return SND_SOC_DOBJ_NONE;
-
-       switch (control_hdr->ops.info) {
-       case SND_SOC_TPLG_CTL_VOLSW:
-       case SND_SOC_TPLG_CTL_VOLSW_SX:
-       case SND_SOC_TPLG_CTL_VOLSW_XR_SX:
-       case SND_SOC_TPLG_CTL_RANGE:
-       case SND_SOC_TPLG_CTL_STROBE:
-               return SND_SOC_DOBJ_MIXER;
-       case SND_SOC_TPLG_CTL_ENUM:
-       case SND_SOC_TPLG_CTL_ENUM_VALUE:
-               return SND_SOC_DOBJ_ENUM;
-       case SND_SOC_TPLG_CTL_BYTES:
-               return SND_SOC_DOBJ_BYTES;
-       default:
-               return SND_SOC_DOBJ_NONE;
-       }
-}
-
-static enum snd_soc_dobj_type get_dobj_type(struct snd_soc_tplg_hdr *hdr,
-       struct snd_soc_tplg_ctl_hdr *control_hdr)
-{
-       switch (hdr->type) {
-       case SND_SOC_TPLG_TYPE_MIXER:
-               return get_dobj_mixer_type(control_hdr);
-       case SND_SOC_TPLG_TYPE_DAPM_GRAPH:
-       case SND_SOC_TPLG_TYPE_MANIFEST:
-               return SND_SOC_DOBJ_NONE;
-       case SND_SOC_TPLG_TYPE_DAPM_WIDGET:
-               return SND_SOC_DOBJ_WIDGET;
-       case SND_SOC_TPLG_TYPE_DAI_LINK:
-               return SND_SOC_DOBJ_DAI_LINK;
-       case SND_SOC_TPLG_TYPE_PCM:
-               return SND_SOC_DOBJ_PCM;
-       case SND_SOC_TPLG_TYPE_CODEC_LINK:
-               return SND_SOC_DOBJ_CODEC_LINK;
-       default:
-               return SND_SOC_DOBJ_NONE;
-       }
-}
-
 static inline void soc_bind_err(struct soc_tplg *tplg,
        struct snd_soc_tplg_ctl_hdr *hdr, int index)
 {