On Thu 7 May 2009 06:04, [email protected] pondered:
> --- trunk/arch/blackfin/kernel/setup.c        2009-05-07 09:42:28 UTC (rev 
> 6328)
> +++ trunk/arch/blackfin/kernel/setup.c        2009-05-07 10:04:19 UTC (rev 
> 6329)
> @@ -801,10 +801,8 @@
>       cclk = get_cclk();
>       sclk = get_sclk();
>  
> -#if !defined(CONFIG_BFIN_KERNEL_CLOCK)
> -     if (ANOMALY_05000273 && cclk == sclk)
> -             panic("ANOMALY 05000273, SCLK can not be same as CCLK");
> -#endif
> +     if ((ANOMALY_05000273 || ANOMALY_05000274) && (cclk >> 1) <= sclk)
> +             panic("ANOMALY 05000273 and 05000274: CCLK must be >= 2*SCLK");
>  

Sorry to be nit-picky - but shouldn't this be "or", not "and"?

-Robin
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to