ASoC: Intel: Skylake: Fix typo for token d0i3 caps
Signed-off-by: Subhransu S. Prusty <subhransu.s.prusty@intel.com> Acked-by: Vinod Koul <vinod.koul@intel.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
ab1b732d53
commit
c0116be3d1
|
@ -213,8 +213,9 @@ enum SKL_TKNS {
|
||||||
SKL_TKN_U32_LIB_COUNT,
|
SKL_TKN_U32_LIB_COUNT,
|
||||||
SKL_TKN_STR_LIB_NAME,
|
SKL_TKN_STR_LIB_NAME,
|
||||||
SKL_TKN_U32_PMODE,
|
SKL_TKN_U32_PMODE,
|
||||||
SKL_TKL_U32_D0I3_CAPS,
|
SKL_TKL_U32_D0I3_CAPS, /* Typo added at v4.10 */
|
||||||
SKL_TKN_MAX = SKL_TKL_U32_D0I3_CAPS,
|
SKL_TKN_U32_D0I3_CAPS = SKL_TKL_U32_D0I3_CAPS,
|
||||||
|
SKL_TKN_MAX = SKL_TKN_U32_D0I3_CAPS,
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1995,7 +1995,7 @@ static int skl_tplg_get_token(struct device *dev,
|
||||||
mconfig->converter = tkn_elem->value;
|
mconfig->converter = tkn_elem->value;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SKL_TKL_U32_D0I3_CAPS:
|
case SKL_TKN_U32_D0I3_CAPS:
|
||||||
mconfig->d0i3_caps = tkn_elem->value;
|
mconfig->d0i3_caps = tkn_elem->value;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue