diff options
author | Takashi Iwai <tiwai@suse.de> | 2018-10-03 20:31:44 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-10-04 13:36:35 +0300 |
commit | 9c80c5a8831471e0a3e139aad1b0d4c0fdc50b2f (patch) | |
tree | 3003a5fe383afa0741af3b68a9b8e5c883ce789b /sound | |
parent | 06da26e5ce157bf2af09ef4a9f5dc30af4599fa0 (diff) | |
download | linux-9c80c5a8831471e0a3e139aad1b0d4c0fdc50b2f.tar.xz |
ASoC: intel: skylake: Add missing break in skl_tplg_get_token()
skl_tplg_get_token() misses a break in the big switch() block for
SKL_TKN_U8_CORE_ID entry.
Spotted nicely by -Wimplicit-fallthrough compiler option.
Fixes: 6277e83292a2 ("ASoC: Intel: Skylake: Parse vendor tokens to build module data")
Cc: <stable@vger.kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/intel/skylake/skl-topology.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/intel/skylake/skl-topology.c b/sound/soc/intel/skylake/skl-topology.c index 52a9915da0f5..cf8848b779dc 100644 --- a/sound/soc/intel/skylake/skl-topology.c +++ b/sound/soc/intel/skylake/skl-topology.c @@ -2460,6 +2460,7 @@ static int skl_tplg_get_token(struct device *dev, case SKL_TKN_U8_CORE_ID: mconfig->core_id = tkn_elem->value; + break; case SKL_TKN_U8_MOD_TYPE: mconfig->m_type = tkn_elem->value; |