Hello,

> +static int sm501_check_clocks(struct sm501_devdata *sm)
> +{
> +     unsigned long pwrmode = readl(sm->regs + SM501_CURRENT_CLOCK);
> +     unsigned long msrc = (pwrmode & SM501_POWERMODE_M_SRC);
> +     unsigned long m1src = (pwrmode & SM501_POWERMODE_M1_SRC);
> +
> +     return ((msrc == 0 && m1src != 0) || (msrc == 0 && msrc != 0));
                                              ^^^^^^^^^^^^^^^^^^^^^^
This will always be false. Typo?

        Mariusz
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to