diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-06-28 08:08:31 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-07-17 12:32:14 -0400 |
commit | 9ef2224d9f2e684da016c8a29ecf6dc548b66e3e (patch) | |
tree | 205a955b9d3df1011c1c556a93ba26230f160782 /drivers/extcon | |
parent | 325c642380fb9a8c628696ed8d64544d73b653ed (diff) |
extcon: arizona: Stop microphone detection if we give up on it
There should be no point in continuing to try to detect a microphone any
more so stop doing so.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/extcon')
-rw-r--r-- | drivers/extcon/extcon-arizona.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/extcon/extcon-arizona.c b/drivers/extcon/extcon-arizona.c index 0626754d6e04..427a289f32a5 100644 --- a/drivers/extcon/extcon-arizona.c +++ b/drivers/extcon/extcon-arizona.c | |||
@@ -196,6 +196,8 @@ static irqreturn_t arizona_micdet(int irq, void *data) | |||
196 | if (info->jack_flips >= info->micd_num_modes) { | 196 | if (info->jack_flips >= info->micd_num_modes) { |
197 | dev_dbg(arizona->dev, "Detected headphone\n"); | 197 | dev_dbg(arizona->dev, "Detected headphone\n"); |
198 | info->detecting = false; | 198 | info->detecting = false; |
199 | arizona_stop_mic(info); | ||
200 | |||
199 | ret = extcon_set_cable_state_(&info->edev, | 201 | ret = extcon_set_cable_state_(&info->edev, |
200 | ARIZONA_CABLE_HEADPHONE, | 202 | ARIZONA_CABLE_HEADPHONE, |
201 | true); | 203 | true); |