mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 03:15:31 +09:00
ASoC: intel: skylake: Add missing break in skl_tplg_get_token()
commit9c80c5a883upstream. 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:6277e83292("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> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
3e63a7f25c
commit
b85c6659a7
@@ -1780,6 +1780,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;
|
||||
|
||||
Reference in New Issue
Block a user