[PATCH 1/3] ARM i.MX28: fix bit operation
Shawn Guo
shawn.guo at freescale.com
Mon Jan 24 04:29:28 EST 2011
Hi Sascha,
On Fri, Jan 21, 2011 at 11:57:52AM +0100, Sascha Hauer wrote:
> reg | (1 << clk->enable_shift) always evaluates to true. Switch it
> to & which makes much more sense
>
> Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
> ---
> arch/arm/mach-mxs/clock-mx28.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/arch/arm/mach-mxs/clock-mx28.c b/arch/arm/mach-mxs/clock-mx28.c
> index 56312c0..4146b38 100644
> --- a/arch/arm/mach-mxs/clock-mx28.c
> +++ b/arch/arm/mach-mxs/clock-mx28.c
> @@ -355,7 +355,7 @@ static int name##_set_rate(struct clk *clk, unsigned long rate) \
> } else { \
> reg &= ~BM_CLKCTRL_##dr##_DIV; \
> reg |= div << BP_CLKCTRL_##dr##_DIV; \
> - if (reg | (1 << clk->enable_shift)) { \
> + if (reg & (1 << clk->enable_shift)) { \
> pr_err("%s: clock is gated\n", __func__); \
> return -EINVAL; \
> } \
> --
> 1.7.2.3
>
>
Would you mind fixing the same issue in clock-mx23.c name##_set_rate()?
Regards,
Shawn
More information about the linux-arm-kernel
mailing list