On Mon, Mar 21, 2005 at 05:52:21PM -0600, Joel Schopp wrote: > -#ifdef CONFIG_DISCONTIGMEM > +/* Put things that are common to DISCONTIGMEM and NUMA here */ > +#if (CONFIG_DISCONTIGMEM) || (CONFIG_NUMA) Please use "#if defined(X) || defined(Y)" instead of the above syntax, the same goes for other locations. -Olof