From: Lars-Peter Clausen Date: Sat, 31 Aug 2013 09:02:17 +0000 (+0200) Subject: ASoC: Remove unused control_type field from snd_soc_codec struct X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=43d92e7d9aa13b91687f671ea7015204bc88fb84;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git ASoC: Remove unused control_type field from snd_soc_codec struct The control_type field was used by the core to track which raw IO methods to use, but when switching to regmap this was no longer necessary and so the last user of the field was removed in commit be3ea3b9 ("ASoC: Use new register map API for ASoC generic physical I/O"). The field is now completely unused and can be removed. Signed-off-by: Lars-Peter Clausen Signed-off-by: Mark Brown --- diff --git a/include/sound/soc.h b/include/sound/soc.h index d57a04e7553d..254bcda40695 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h @@ -701,7 +701,6 @@ struct snd_soc_codec { /* codec IO */ void *control_data; /* codec control (i2c/3wire) data */ - enum snd_soc_control_type control_type; hw_write_t hw_write; unsigned int (*hw_read)(struct snd_soc_codec *, unsigned int); unsigned int (*read)(struct snd_soc_codec *, unsigned int);