Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751464AbdFZIn2 (ORCPT ); Mon, 26 Jun 2017 04:43:28 -0400 Received: from esa4.microchip.iphmx.com ([68.232.154.123]:36909 "EHLO esa4.microchip.iphmx.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751387AbdFZInJ (ORCPT ); Mon, 26 Jun 2017 04:43:09 -0400 X-IronPort-AV: E=Sophos;i="5.39,394,1493708400"; d="scan'208";a="4011513" Subject: Re: [PATCH v2 5/6] pwm: mediatek: add PWM_CLK_DIV_MAX To: Zhi Mao , , Thierry Reding , Rob Herring , Mark Rutland , Matthias Brugger , CC: , , , , , , , , References: <1498194505-30930-1-git-send-email-zhi.mao@mediatek.com> <1498194505-30930-6-git-send-email-zhi.mao@mediatek.com> From: m18063 Message-ID: <8eaabcb6-c7b1-efcc-7dae-967a38feb8f1@microchip.com> Date: Mon, 26 Jun 2017 11:43:01 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: <1498194505-30930-6-git-send-email-zhi.mao@mediatek.com> Content-Type: text/plain; charset="utf-8" Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1083 Lines: 39 On 23.06.2017 08:08, Zhi Mao wrote: > Replace "7" with "PWM_CLK_DIV_MAX" in function:mtk_pwm_config() > to improve the code readablity. > > Signed-off-by: Zhi Mao > --- > drivers/pwm/pwm-mediatek.c | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/drivers/pwm/pwm-mediatek.c b/drivers/pwm/pwm-mediatek.c > index 554a042..e5f6425 100644 > --- a/drivers/pwm/pwm-mediatek.c > +++ b/drivers/pwm/pwm-mediatek.c > @@ -30,6 +30,8 @@ > #define PWMDWIDTH 0x2c > #define PWMTHRES 0x30 > > +#define PWM_CLK_DIV_MAX 7 > + > enum { > MTK_CLK_MAIN = 0, > MTK_CLK_TOP, > @@ -130,8 +132,10 @@ static int mtk_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm, > clkdiv++; > } > > - if (clkdiv > 7) > + if (clkdiv > PWM_CLK_DIV_MAX) { You forgot to: mtk_pwm_clk_disable(chip, pwm); > + dev_err(chip->dev, "period %d not supported\n", period_ns); > return -EINVAL; > + } > > mtk_pwm_writel(pc, pwm->hwpwm, PWMCON, BIT(15) | clkdiv); > mtk_pwm_writel(pc, pwm->hwpwm, PWMDWIDTH, period_ns / resolution); >