
Dear tmarri@apm.com,
In message 1285698750-4943-1-git-send-email-tmarri@apm.com you wrote:
From: Tirumala Marri tmarri@apm.com
APM821XX is a new line of SoCs which are derivatives of PPC44X family of processors. This patch adds support of CPU, cache, tlb, 32k ocm, bootstraps, PLB and AHB bus.
...
-#if (defined(CONFIG_405EP) || defined (CONFIG_405EX)) && !defined(CONFIG_SYS_4xx_GPIO_TABLE) +#if !defined(CONFIG_APM821XX) && (defined(CONFIG_405EP) ||\
defined (CONFIG_405EX)) && !defined(CONFIG_SYS_4xx_GPIO_TABLE)
Please reorder to avoid breaking the expression in parens, and to keep the list sorted (in the other places you also sort the 'A' after the '4', as one would expect), for example:
#if (defined(CONFIG_405EP) || defined (CONFIG_405EX)) && \ !defined(CONFIG_APM821XX) && !defined(CONFIG_SYS_4xx_GPIO_TABLE)
Thanks.
Wolfgang Denk