Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1301627
| From | Charles Keepax <ckeepax@opensource.wolfsonmicro.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 1/4] extcon: arizona: Remove enable/disable of 32k clock |
| Date | 2016-01-05 16:50 +0100 |
| Message-ID | <qNC1X-4OF-9@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
The 32k clock is unconditionally enabled by the MFD core so there is no need to control it from the extcon device, so this patch removes the control of the 32k clock. Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com> --- drivers/extcon/extcon-arizona.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/extcon/extcon-arizona.c b/drivers/extcon/extcon-arizona.c index e4890dd..52d041f 100644 --- a/drivers/extcon/extcon-arizona.c +++ b/drivers/extcon/extcon-arizona.c @@ -1571,7 +1571,6 @@ static int arizona_extcon_probe(struct platform_device *pdev) goto err_micdet; } - arizona_clk32k_enable(arizona); regmap_update_bits(arizona->regmap, ARIZONA_JACK_DETECT_DEBOUNCE, ARIZONA_JD1_DB, ARIZONA_JD1_DB); regmap_update_bits(arizona->regmap, ARIZONA_JACK_DETECT_ANALOGUE, @@ -1642,7 +1641,6 @@ static int arizona_extcon_remove(struct platform_device *pdev) cancel_delayed_work_sync(&info->hpdet_work); regmap_update_bits(arizona->regmap, ARIZONA_JACK_DETECT_ANALOGUE, ARIZONA_JD1_ENA, 0); - arizona_clk32k_disable(arizona); return 0; } -- 2.1.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 1/4] extcon: arizona: Remove enable/disable of 32k clock Charles Keepax <ckeepax@opensource.wolfsonmicro.com> - 2016-01-05 16:50 +0100
[PATCH 3/4] mfd: arizona: Switch to using clock driver for 32k clock Charles Keepax <ckeepax@opensource.wolfsonmicro.com> - 2016-01-05 16:50 +0100
Re: [PATCH 3/4] mfd: arizona: Switch to using clock driver for 32k clock kbuild test robot <lkp@intel.com> - 2016-01-05 17:30 +0100
Re: [PATCH 3/4] mfd: arizona: Switch to using clock driver for 32k clock Charles Keepax <ckeepax@opensource.wolfsonmicro.com> - 2016-01-06 10:40 +0100
[PATCH 2/4] clk: arizona: Add clock driver for the Arizona devices Charles Keepax <ckeepax@opensource.wolfsonmicro.com> - 2016-01-05 16:50 +0100
Re: [PATCH 2/4] clk: arizona: Add clock driver for the Arizona devices Stephen Boyd <sboyd@codeaurora.org> - 2016-01-06 02:50 +0100
csiph-web