Re: [PATCH v3 2/10] pwm: mediatek: allocate the clks array dynamically

2019-08-16 Thread Uwe Kleine-König
Hello, On Fri, Aug 16, 2019 at 03:21:20PM +0800, Sam Shih wrote: > @@ -119,9 +104,9 @@ static void mtk_pwm_clk_disable(struct pwm_chip *chip, > struct pwm_device *pwm) > if (!pc->soc->has_clks) > return; > > - clk_disable_unprepare(pc->clks[MTK_CLK_PWM1 + pwm->hwpwm]); >

[PATCH v3 2/10] pwm: mediatek: allocate the clks array dynamically

2019-08-16 Thread Sam Shih
From: Ryder Lee Instead of using fixed size of arrays, allocate the memory for them based on the information we get from the chips. Signed-off-by: Ryder Lee Signed-off-by: Sam Shih --- drivers/pwm/pwm-mediatek.c | 76 +++--- 1 file changed, 39 insertions(+), 37