diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2018-01-29 05:01:46 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-02-12 10:48:34 +0100 |
commit | bc596c4256507040743d9bbbf2b78fc82ec45893 (patch) | |
tree | b43dd47ba6da335bd703ee3230302817628c8b2c /sound/soc/codecs/da7218.h | |
parent | Linux 4.16-rc1 (diff) | |
download | linux-bc596c4256507040743d9bbbf2b78fc82ec45893.tar.xz linux-bc596c4256507040743d9bbbf2b78fc82ec45893.zip |
ASoC: da7218: 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 <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/da7218.h')
-rw-r--r-- | sound/soc/codecs/da7218.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/da7218.h b/sound/soc/codecs/da7218.h index 4f7ec21069a4..19e6cee2e42e 100644 --- a/sound/soc/codecs/da7218.h +++ b/sound/soc/codecs/da7218.h @@ -1410,6 +1410,6 @@ struct da7218_priv { }; /* HP detect control */ -int da7218_hpldet(struct snd_soc_codec *codec, struct snd_soc_jack *jack); +int da7218_hpldet(struct snd_soc_component *component, struct snd_soc_jack *jack); #endif /* _DA7218_H */ |