diff options
-rw-r--r-- | drivers/regulator/arizona-micsupp.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/regulator/arizona-micsupp.c b/drivers/regulator/arizona-micsupp.c index fcb98dbda837..143946215e23 100644 --- a/drivers/regulator/arizona-micsupp.c +++ b/drivers/regulator/arizona-micsupp.c | |||
@@ -45,6 +45,7 @@ static void arizona_micsupp_check_cp(struct work_struct *work) | |||
45 | struct arizona_micsupp *micsupp = | 45 | struct arizona_micsupp *micsupp = |
46 | container_of(work, struct arizona_micsupp, check_cp_work); | 46 | container_of(work, struct arizona_micsupp, check_cp_work); |
47 | struct snd_soc_dapm_context *dapm = micsupp->arizona->dapm; | 47 | struct snd_soc_dapm_context *dapm = micsupp->arizona->dapm; |
48 | struct snd_soc_component *component = snd_soc_dapm_to_component(dapm); | ||
48 | struct arizona *arizona = micsupp->arizona; | 49 | struct arizona *arizona = micsupp->arizona; |
49 | struct regmap *regmap = arizona->regmap; | 50 | struct regmap *regmap = arizona->regmap; |
50 | unsigned int reg; | 51 | unsigned int reg; |
@@ -59,9 +60,10 @@ static void arizona_micsupp_check_cp(struct work_struct *work) | |||
59 | if (dapm) { | 60 | if (dapm) { |
60 | if ((reg & (ARIZONA_CPMIC_ENA | ARIZONA_CPMIC_BYPASS)) == | 61 | if ((reg & (ARIZONA_CPMIC_ENA | ARIZONA_CPMIC_BYPASS)) == |
61 | ARIZONA_CPMIC_ENA) | 62 | ARIZONA_CPMIC_ENA) |
62 | snd_soc_dapm_force_enable_pin(dapm, "MICSUPP"); | 63 | snd_soc_component_force_enable_pin(component, |
64 | "MICSUPP"); | ||
63 | else | 65 | else |
64 | snd_soc_dapm_disable_pin(dapm, "MICSUPP"); | 66 | snd_soc_component_disable_pin(component, "MICSUPP"); |
65 | 67 | ||
66 | snd_soc_dapm_sync(dapm); | 68 | snd_soc_dapm_sync(dapm); |
67 | } | 69 | } |