Commit 32973dcf authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown

ASoC: rsnd: merge rsnd_kctrl_new_m/s/e into rsnd_kctrl_new()

Current rsnd driver is using rsnd_kctrl_new_m/s/e function,
but the differences are very few.
This patch merge these rsnd_kctrl_new_m/s/e into rsnd_kctrl_new
Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Tested-by: default avatarHiroyuki Yokoyama <hiroyuki.yokoyama.vx@renesas.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 3a374715
...@@ -1000,13 +1000,30 @@ static int rsnd_kctrl_put(struct snd_kcontrol *kctrl, ...@@ -1000,13 +1000,30 @@ static int rsnd_kctrl_put(struct snd_kcontrol *kctrl,
return change; return change;
} }
static int __rsnd_kctrl_new(struct rsnd_mod *mod, struct rsnd_kctrl_cfg *rsnd_kctrl_init_m(struct rsnd_kctrl_cfg_m *cfg)
struct rsnd_dai_stream *io, {
struct snd_soc_pcm_runtime *rtd, cfg->cfg.val = cfg->val;
const unsigned char *name,
struct rsnd_kctrl_cfg *cfg, return &cfg->cfg;
void (*update)(struct rsnd_dai_stream *io, }
struct rsnd_mod *mod))
struct rsnd_kctrl_cfg *rsnd_kctrl_init_s(struct rsnd_kctrl_cfg_s *cfg)
{
cfg->cfg.val = &cfg->val;
return &cfg->cfg;
}
int rsnd_kctrl_new(struct rsnd_mod *mod,
struct rsnd_dai_stream *io,
struct snd_soc_pcm_runtime *rtd,
const unsigned char *name,
void (*update)(struct rsnd_dai_stream *io,
struct rsnd_mod *mod),
struct rsnd_kctrl_cfg *cfg,
const char * const *texts,
int size,
u32 max)
{ {
struct snd_card *card = rtd->card->snd_card; struct snd_card *card = rtd->card->snd_card;
struct snd_kcontrol *kctrl; struct snd_kcontrol *kctrl;
...@@ -1021,6 +1038,9 @@ static int __rsnd_kctrl_new(struct rsnd_mod *mod, ...@@ -1021,6 +1038,9 @@ static int __rsnd_kctrl_new(struct rsnd_mod *mod,
}; };
int ret; int ret;
if (size > RSND_MAX_CHANNELS)
return -EINVAL;
kctrl = snd_ctl_new1(&knew, mod); kctrl = snd_ctl_new1(&knew, mod);
if (!kctrl) if (!kctrl)
return -ENOMEM; return -ENOMEM;
...@@ -1029,65 +1049,17 @@ static int __rsnd_kctrl_new(struct rsnd_mod *mod, ...@@ -1029,65 +1049,17 @@ static int __rsnd_kctrl_new(struct rsnd_mod *mod,
if (ret < 0) if (ret < 0)
return ret; return ret;
cfg->update = update; cfg->texts = texts;
cfg->card = card; cfg->max = max;
cfg->kctrl = kctrl; cfg->size = size;
cfg->io = io; cfg->update = update;
cfg->card = card;
cfg->kctrl = kctrl;
cfg->io = io;
return 0; return 0;
} }
int rsnd_kctrl_new_m(struct rsnd_mod *mod,
struct rsnd_dai_stream *io,
struct snd_soc_pcm_runtime *rtd,
const unsigned char *name,
void (*update)(struct rsnd_dai_stream *io,
struct rsnd_mod *mod),
struct rsnd_kctrl_cfg_m *_cfg,
int ch_size,
u32 max)
{
if (ch_size > RSND_MAX_CHANNELS)
return -EINVAL;
_cfg->cfg.max = max;
_cfg->cfg.size = ch_size;
_cfg->cfg.val = _cfg->val;
return __rsnd_kctrl_new(mod, io, rtd, name, &_cfg->cfg, update);
}
int rsnd_kctrl_new_s(struct rsnd_mod *mod,
struct rsnd_dai_stream *io,
struct snd_soc_pcm_runtime *rtd,
const unsigned char *name,
void (*update)(struct rsnd_dai_stream *io,
struct rsnd_mod *mod),
struct rsnd_kctrl_cfg_s *_cfg,
u32 max)
{
_cfg->cfg.max = max;
_cfg->cfg.size = 1;
_cfg->cfg.val = &_cfg->val;
return __rsnd_kctrl_new(mod, io, rtd, name, &_cfg->cfg, update);
}
int rsnd_kctrl_new_e(struct rsnd_mod *mod,
struct rsnd_dai_stream *io,
struct snd_soc_pcm_runtime *rtd,
const unsigned char *name,
struct rsnd_kctrl_cfg_s *_cfg,
void (*update)(struct rsnd_dai_stream *io,
struct rsnd_mod *mod),
const char * const *texts,
u32 max)
{
_cfg->cfg.max = max;
_cfg->cfg.size = 1;
_cfg->cfg.val = &_cfg->val;
_cfg->cfg.texts = texts;
return __rsnd_kctrl_new(mod, io, rtd, name, &_cfg->cfg, update);
}
/* /*
* snd_soc_platform * snd_soc_platform
*/ */
......
...@@ -285,18 +285,18 @@ static int rsnd_dvc_pcm_new(struct rsnd_mod *mod, ...@@ -285,18 +285,18 @@ static int rsnd_dvc_pcm_new(struct rsnd_mod *mod,
ret = rsnd_kctrl_new_e(mod, io, rtd, ret = rsnd_kctrl_new_e(mod, io, rtd,
is_play ? is_play ?
"DVC Out Ramp Up Rate" : "DVC In Ramp Up Rate", "DVC Out Ramp Up Rate" : "DVC In Ramp Up Rate",
&dvc->rup,
rsnd_dvc_volume_update, rsnd_dvc_volume_update,
dvc_ramp_rate, ARRAY_SIZE(dvc_ramp_rate)); &dvc->rup,
dvc_ramp_rate);
if (ret < 0) if (ret < 0)
return ret; return ret;
ret = rsnd_kctrl_new_e(mod, io, rtd, ret = rsnd_kctrl_new_e(mod, io, rtd,
is_play ? is_play ?
"DVC Out Ramp Down Rate" : "DVC In Ramp Down Rate", "DVC Out Ramp Down Rate" : "DVC In Ramp Down Rate",
&dvc->rdown,
rsnd_dvc_volume_update, rsnd_dvc_volume_update,
dvc_ramp_rate, ARRAY_SIZE(dvc_ramp_rate)); &dvc->rdown,
dvc_ramp_rate);
if (ret < 0) if (ret < 0)
return ret; return ret;
......
...@@ -611,32 +611,30 @@ struct rsnd_kctrl_cfg_s { ...@@ -611,32 +611,30 @@ struct rsnd_kctrl_cfg_s {
u32 val; u32 val;
}; };
int rsnd_kctrl_new_m(struct rsnd_mod *mod, struct rsnd_kctrl_cfg *rsnd_kctrl_init_m(struct rsnd_kctrl_cfg_m *cfg);
struct rsnd_dai_stream *io, struct rsnd_kctrl_cfg *rsnd_kctrl_init_s(struct rsnd_kctrl_cfg_s *cfg);
struct snd_soc_pcm_runtime *rtd, int rsnd_kctrl_new(struct rsnd_mod *mod,
const unsigned char *name, struct rsnd_dai_stream *io,
void (*update)(struct rsnd_dai_stream *io, struct snd_soc_pcm_runtime *rtd,
struct rsnd_mod *mod), const unsigned char *name,
struct rsnd_kctrl_cfg_m *_cfg, void (*update)(struct rsnd_dai_stream *io,
int ch_size, struct rsnd_mod *mod),
u32 max); struct rsnd_kctrl_cfg *cfg,
int rsnd_kctrl_new_s(struct rsnd_mod *mod, const char * const *texts,
struct rsnd_dai_stream *io, int size,
struct snd_soc_pcm_runtime *rtd, u32 max);
const unsigned char *name,
void (*update)(struct rsnd_dai_stream *io, #define rsnd_kctrl_new_m(mod, io, rtd, name, update, cfg, size, max) \
struct rsnd_mod *mod), rsnd_kctrl_new(mod, io, rtd, name, update, rsnd_kctrl_init_m(cfg), \
struct rsnd_kctrl_cfg_s *_cfg, NULL, size, max)
u32 max);
int rsnd_kctrl_new_e(struct rsnd_mod *mod, #define rsnd_kctrl_new_s(mod, io, rtd, name, update, cfg, max) \
struct rsnd_dai_stream *io, rsnd_kctrl_new(mod, io, rtd, name, update, rsnd_kctrl_init_s(cfg), \
struct snd_soc_pcm_runtime *rtd, NULL, 1, max)
const unsigned char *name,
struct rsnd_kctrl_cfg_s *_cfg, #define rsnd_kctrl_new_e(mod, io, rtd, name, update, cfg, texts) \
void (*update)(struct rsnd_dai_stream *io, rsnd_kctrl_new(mod, io, rtd, name, update, rsnd_kctrl_init_s(cfg), \
struct rsnd_mod *mod), texts, 1, ARRAY_SIZE(texts))
const char * const *texts,
u32 max);
/* /*
* R-Car SSI * R-Car SSI
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment