Update from old pmu_{dis,en}able() to ckldev api. Signed-off-by: John Crispin <blogic@xxxxxxxxxxx> --- arch/mips/lantiq/xway/gpio_stp.c | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/arch/mips/lantiq/xway/gpio_stp.c b/arch/mips/lantiq/xway/gpio_stp.c index e6b4809..c9bf38b 100644 --- a/arch/mips/lantiq/xway/gpio_stp.c +++ b/arch/mips/lantiq/xway/gpio_stp.c @@ -15,6 +15,7 @@ #include <linux/mutex.h> #include <linux/io.h> #include <linux/gpio.h> +#include <linux/clk.h> #include <lantiq_soc.h> @@ -80,6 +81,8 @@ static struct gpio_chip ltq_stp_chip = { static int ltq_stp_hw_init(void) { + struct clk *clk; + /* sane defaults */ ltq_stp_w32(0, LTQ_STP_AR); ltq_stp_w32(0, LTQ_STP_CPU0); @@ -105,7 +108,8 @@ static int ltq_stp_hw_init(void) */ ltq_stp_w32_mask(0, LTQ_STP_ADSL_SRC, LTQ_STP_CON0); - ltq_pmu_enable(PMU_LED); + clk = clk_get_sys("fpi", "stp"); + clk_enable(clk); return 0; } -- 1.7.7.1