Unverified Commit 3919249e authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown
Browse files

ASoC: simple-card-utils: tidyup dev_dbg() to use 1 line



We can use 100 char now for 1 line.
This patch tidyup unreadable dev_dbg() message.

Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://lore.kernel.org/r/87fszwwf8o.wl-kuninori.morimoto.gx@renesas.com


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 33cd6b19
Loading
Loading
Loading
Loading
+3 −6
Original line number Original line Diff line number Diff line
@@ -241,17 +241,14 @@ static inline void asoc_simple_debug_info(struct asoc_simple_priv *priv)
		if (link->dai_fmt)
		if (link->dai_fmt)
			dev_dbg(dev, "dai format = %04x\n", link->dai_fmt);
			dev_dbg(dev, "dai format = %04x\n", link->dai_fmt);
		if (props->adata.convert_rate)
		if (props->adata.convert_rate)
			dev_dbg(dev, "convert_rate = %d\n",
			dev_dbg(dev, "convert_rate = %d\n", props->adata.convert_rate);
				props->adata.convert_rate);
		if (props->adata.convert_channels)
		if (props->adata.convert_channels)
			dev_dbg(dev, "convert_channels = %d\n",
			dev_dbg(dev, "convert_channels = %d\n", props->adata.convert_channels);
				props->adata.convert_channels);
		for_each_prop_codec_conf(props, j, cnf)
		for_each_prop_codec_conf(props, j, cnf)
			if (cnf->name_prefix)
			if (cnf->name_prefix)
				dev_dbg(dev, "name prefix = %s\n", cnf->name_prefix);
				dev_dbg(dev, "name prefix = %s\n", cnf->name_prefix);
		if (props->mclk_fs)
		if (props->mclk_fs)
			dev_dbg(dev, "mclk-fs = %d\n",
			dev_dbg(dev, "mclk-fs = %d\n", props->mclk_fs);
				props->mclk_fs);
	}
	}
}
}
#else
#else