Skip to content

Commit 755d440

Browse files
morimotobroonie
authored andcommitted
ASoC: zx_aud96p22: replace codec to component
Now we can replace Codec to Component. Let's do it. Note: xxx_codec_xxx() -> xxx_component_xxx() .idle_bias_off = 0 -> .idle_bias_on = 1 .ignore_pmdown_time = 0 -> .use_pmdown_time = 1 - -> .endianness = 1 - -> .non_legacy_dai_naming = 1 Signed-off-by: Kuninori Morimoto <[email protected]> Signed-off-by: Mark Brown <[email protected]>
1 parent 7928b2c commit 755d440

File tree

1 file changed

+18
-17
lines changed

1 file changed

+18
-17
lines changed

sound/soc/codecs/zx_aud96p22.c

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ struct aud96p22_priv {
5757
static int aud96p22_adc_event(struct snd_soc_dapm_widget *w,
5858
struct snd_kcontrol *kcontrol, int event)
5959
{
60-
struct snd_soc_codec *codec = snd_soc_dapm_to_codec(w->dapm);
61-
struct aud96p22_priv *priv = snd_soc_codec_get_drvdata(codec);
60+
struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
61+
struct aud96p22_priv *priv = snd_soc_component_get_drvdata(component);
6262
struct regmap *regmap = priv->regmap;
6363

6464
if (event != SND_SOC_DAPM_POST_PMU)
@@ -74,8 +74,8 @@ static int aud96p22_adc_event(struct snd_soc_dapm_widget *w,
7474
static int aud96p22_dac_event(struct snd_soc_dapm_widget *w,
7575
struct snd_kcontrol *kcontrol, int event)
7676
{
77-
struct snd_soc_codec *codec = snd_soc_dapm_to_codec(w->dapm);
78-
struct aud96p22_priv *priv = snd_soc_codec_get_drvdata(codec);
77+
struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
78+
struct aud96p22_priv *priv = snd_soc_component_get_drvdata(component);
7979
struct regmap *regmap = priv->regmap;
8080

8181
if (event != SND_SOC_DAPM_POST_PMU)
@@ -261,20 +261,22 @@ static const struct snd_soc_dapm_route aud96p22_dapm_routes[] = {
261261
{ "LINEOUTMN", NULL, "LD2" },
262262
};
263263

264-
static const struct snd_soc_codec_driver aud96p22_driver = {
265-
.component_driver = {
266-
.controls = aud96p22_snd_controls,
267-
.num_controls = ARRAY_SIZE(aud96p22_snd_controls),
268-
.dapm_widgets = aud96p22_dapm_widgets,
269-
.num_dapm_widgets = ARRAY_SIZE(aud96p22_dapm_widgets),
270-
.dapm_routes = aud96p22_dapm_routes,
271-
.num_dapm_routes = ARRAY_SIZE(aud96p22_dapm_routes),
272-
},
264+
static const struct snd_soc_component_driver aud96p22_driver = {
265+
.controls = aud96p22_snd_controls,
266+
.num_controls = ARRAY_SIZE(aud96p22_snd_controls),
267+
.dapm_widgets = aud96p22_dapm_widgets,
268+
.num_dapm_widgets = ARRAY_SIZE(aud96p22_dapm_widgets),
269+
.dapm_routes = aud96p22_dapm_routes,
270+
.num_dapm_routes = ARRAY_SIZE(aud96p22_dapm_routes),
271+
.idle_bias_on = 1,
272+
.use_pmdown_time = 1,
273+
.endianness = 1,
274+
.non_legacy_dai_naming = 1,
273275
};
274276

275277
static int aud96p22_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
276278
{
277-
struct aud96p22_priv *priv = snd_soc_codec_get_drvdata(dai->codec);
279+
struct aud96p22_priv *priv = snd_soc_component_get_drvdata(dai->component);
278280
struct regmap *regmap = priv->regmap;
279281
unsigned int val;
280282

@@ -367,9 +369,9 @@ static int aud96p22_i2c_probe(struct i2c_client *i2c,
367369

368370
i2c_set_clientdata(i2c, priv);
369371

370-
ret = snd_soc_register_codec(dev, &aud96p22_driver, &aud96p22_dai, 1);
372+
ret = devm_snd_soc_register_component(dev, &aud96p22_driver, &aud96p22_dai, 1);
371373
if (ret) {
372-
dev_err(dev, "failed to register codec: %d\n", ret);
374+
dev_err(dev, "failed to register component: %d\n", ret);
373375
return ret;
374376
}
375377

@@ -378,7 +380,6 @@ static int aud96p22_i2c_probe(struct i2c_client *i2c,
378380

379381
static int aud96p22_i2c_remove(struct i2c_client *i2c)
380382
{
381-
snd_soc_unregister_codec(&i2c->dev);
382383
return 0;
383384
}
384385

0 commit comments

Comments
 (0)