...
Please don't do these kinds of things in the source code.
Do them in the Kconfig language where it belongs, and where it makes much
more sense.
See, for example, arch/x86/Kconfig.i386:
config PAGE_OFFSET
hex
default 0xB0000000 if VMSPLIT_3G_OPT
default 0x80000000 if VMSPLIT_2G
default 0x78000000 if VMSPLIT_2G_OPT
default 0x40000000 if VMSPLIT_1G
default 0xC0000000
Notice? Even the syntax is much cleaner!
Linus
-