On Tue, Feb 13, 2018 at 02:03:12AM +0000, Kuninori Morimoto wrote:
From: Kuninori Morimoto kuninori.morimoto.gx@renesas.com
Now we can replace Codec to Component. Let's do it.
Because there are many drivers which are using arizona, we need to update these all related drivers in same time. Otherwise compile error/warning happen
Note:
cs47l24 xxx_codec_xxx() -> xxx_component_xxx() .idle_bias_off = 1 -> .idle_bias_on = 0 .ignore_pmdown_time = 0 -> .use_pmdown_time = 1
-> .endianness = 1
-> .non_legacy_dai_naming = 1
wm5102 xxx_codec_xxx() -> xxx_component_xxx() .idle_bias_off = 1 -> .idle_bias_on = 0 .ignore_pmdown_time = 0 -> .use_pmdown_time = 1
-> .endianness = 1
-> .non_legacy_dai_naming = 1
wm5110 xxx_codec_xxx() -> xxx_component_xxx() .idle_bias_off = 1 -> .idle_bias_on = 0 .ignore_pmdown_time = 0 -> .use_pmdown_time = 1
-> .endianness = 1
-> .non_legacy_dai_naming = 1
wm8997 xxx_codec_xxx() -> xxx_component_xxx() .idle_bias_off = 1 -> .idle_bias_on = 0 .ignore_pmdown_time = 0 -> .use_pmdown_time = 1
-> .endianness = 1
-> .non_legacy_dai_naming = 1
wm8998 xxx_codec_xxx() -> xxx_component_xxx() .idle_bias_off = 1 -> .idle_bias_on = 0 .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 Tested-by: Charles Keepax ckeepax@opensource.cirrus.com
Please make sure you are at least putting patches@opensource.cirrus.com on the CC for patches to the Arizona CODECs, in this case I probably would have expected a direct CC since it has my tested-by on it.
I would have really liked to see the formatting fix ups going along with this, even if in a separate patch to easy our diff concerns. But I guess I can apply those myself, and since this is the last one in the chain waiting to go in:
Acked-by: Charles Keepax ckeepax@opensource.cirrus.com
Thanks, Charles