ASoC: rsnd: remove rsnd_mod_confirm_ssi() under DEBUG
rsnd_mod_confirm_ssi() confirms mod sanity, it should always be confirmed, not only when DEBUG. This patch tidyup it. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Link: https://patch.msgid.link/87ed7bk4qt.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
e620b496c7
commit
80565764c7
@ -262,7 +262,7 @@ int rsnd_adg_set_src_timesel_gen2(struct rsnd_mod *src_mod,
|
||||
int id = rsnd_mod_id(src_mod);
|
||||
int shift = (id % 2) ? 16 : 0;
|
||||
|
||||
rsnd_mod_confirm_src(src_mod);
|
||||
rsnd_mod_make_sure(src_mod, RSND_MOD_SRC);
|
||||
|
||||
rsnd_adg_get_timesel_ratio(priv, io,
|
||||
in_rate, out_rate,
|
||||
@ -291,7 +291,7 @@ static void rsnd_adg_set_ssi_clk(struct rsnd_mod *ssi_mod, u32 val)
|
||||
int shift = (id % 4) * 8;
|
||||
u32 mask = 0xFF << shift;
|
||||
|
||||
rsnd_mod_confirm_ssi(ssi_mod);
|
||||
rsnd_mod_make_sure(ssi_mod, RSND_MOD_SSI);
|
||||
|
||||
val = val << shift;
|
||||
|
||||
|
@ -871,15 +871,6 @@ void rsnd_cmd_remove(struct rsnd_priv *priv);
|
||||
int rsnd_cmd_attach(struct rsnd_dai_stream *io, int id);
|
||||
|
||||
void rsnd_mod_make_sure(struct rsnd_mod *mod, enum rsnd_mod_type type);
|
||||
#ifdef DEBUG
|
||||
#define rsnd_mod_confirm_ssi(mssi) rsnd_mod_make_sure(mssi, RSND_MOD_SSI)
|
||||
#define rsnd_mod_confirm_src(msrc) rsnd_mod_make_sure(msrc, RSND_MOD_SRC)
|
||||
#define rsnd_mod_confirm_dvc(mdvc) rsnd_mod_make_sure(mdvc, RSND_MOD_DVC)
|
||||
#else
|
||||
#define rsnd_mod_confirm_ssi(mssi)
|
||||
#define rsnd_mod_confirm_src(msrc)
|
||||
#define rsnd_mod_confirm_dvc(mdvc)
|
||||
#endif
|
||||
|
||||
/*
|
||||
* If you don't need interrupt status debug message,
|
||||
|
Loading…
Reference in New Issue
Block a user