Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 34e44475 authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown
Browse files

ASoC: rsnd: fixup flag name of rsnd_scu_platform_info



it should be *USE*, not *USB*

Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 5df498a2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ struct rsnd_ssi_platform_info {
/*
 * flags
 */
#define RSND_SCU_USB_HPBIF		(1 << 31) /* it needs RSND_SSI_DEPENDENT */
#define RSND_SCU_USE_HPBIF		(1 << 31) /* it needs RSND_SSI_DEPENDENT */

struct rsnd_scu_platform_info {
	u32 flags;
+2 −2
Original line number Diff line number Diff line
@@ -157,9 +157,9 @@ static int rsnd_scu_start(struct rsnd_mod *mod,
	int ret;

	/*
	 * SCU will be used if it has RSND_SCU_USB_HPBIF flags
	 * SCU will be used if it has RSND_SCU_USE_HPBIF flags
	 */
	if (!(flags & RSND_SCU_USB_HPBIF)) {
	if (!(flags & RSND_SCU_USE_HPBIF)) {
		/* it use PIO transter */
		dev_dbg(dev, "%s%d is not used\n",
			rsnd_mod_name(mod), rsnd_mod_id(mod));