• K
    ASoC: arizona: replace codec to component · 0fe1daa6
    Kuninori Morimoto 提交于
    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: NKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
    Tested-by: NCharles Keepax <ckeepax@opensource.cirrus.com>
    Acked-by: NCharles Keepax <ckeepax@opensource.cirrus.com>
    Signed-off-by: NMark Brown <broonie@kernel.org>
    0fe1daa6
wm_adsp.c 91.0 KB