Re: [RFC] x86: merge nmi_32-64 to nmi.c

From: Maciej W. Rozycki
Date: Sun May 18 2008 - 14:51:52 EST


On Sun, 18 May 2008, Adrian Bunk wrote:

> Even more important:
> How do you want to handle kconfig variables set to "m"?
>
> Expand them to 0.5 ? ;-)

:-)

Modules use a separate set of variables with _MODULE appended to their
names. Thus for an option FOO, you'll get:

#undef CONFIG_FOO
#undef CONFIG_FOO_MODULE

if it's set to "n",

#define CONFIG_FOO 1
#undef CONFIG_FOO_MODULE

if it's set to "y", and

#undef CONFIG_FOO
#define CONFIG_FOO_MODULE 1

if it's set to "m". Individual tests may check these both as they find
appropriate.

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