coreboot-kgpe-d16/src/mainboard/hp/dl145_g1
Patrick Georgi e166782f39 Clean up #ifs
Replace #if CONFIG_FOO==1 with #if CONFIG_FOO:
find src -name \*.[ch] -exec sed -i "s,#if[[:space:]]*\(CONFIG_[A-Z0-9_]*\)[[:space:]]*==[[:space:]]*1[[:space:]]*\$,#if \1," {} +

Replace #if (CONFIG_FOO==1) with #if CONFIG_FOO:
find src -name \*.[ch] -exec sed -i "s,#if[[:space:]]*(\(CONFIG_[A-Z0-9_]*\)[[:space:]]*==[[:space:]]*1)[[:space:]]*\$,#if \1," {} +

Replace #if CONFIG_FOO==0 with #if !CONFIG_FOO:
find src -name \*.[ch] -exec sed -i "s,#if[[:space:]]*\(CONFIG_[A-Z0-9_]*\)[[:space:]]*==[[:space:]]*0[[:space:]]*\$,#if \!\1," {} +

Replace #if (CONFIG_FOO==0) with #if !CONFIG_FOO:
find src -name \*.[ch] -exec sed -i "s,#if[[:space:]]*(\(CONFIG_[A-Z0-9_]*\)[[:space:]]*==[[:space:]]*0)[[:space:]]*\$,#if \!\1," {} +

(and some manual changes to fix false positives)

Change-Id: Iac6ca7605a5f99885258cf1a9a2473a92de27c42
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/1004
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Reviewed-by: Martin Roth <martin@se-eng.com>
2012-05-08 00:34:34 +02:00
..
chip.h Remove unused mainboard_config definitions. Trivial. 2010-08-26 18:24:04 +00:00
cmos.layout Add support for the HP DL145 G1, based on the Tyan s2881. 2010-08-20 20:37:27 +00:00
devicetree.cb Fixed whitespace and indentation 2011-11-09 00:26:23 +01:00
get_bus_conf.c Clean up #ifs 2012-05-08 00:34:34 +02:00
irq_tables.c Fixed whitespace and indentation 2011-11-09 00:26:23 +01:00
Kconfig amd/amd8111: Move HAVE_HARD_RESET to southbridge 2012-02-17 19:00:14 +01:00
mainboard.c Random fixes for TI pci1x2x / Nokia IP530 / others. 2010-12-26 14:12:38 +00:00
mb_sysconf.h Fixed whitespace and indentation 2011-11-09 00:26:23 +01:00
mptable.c Unify Local APIC address definitions 2012-03-08 15:39:05 +01:00
resourcemap.c Add support for the HP DL145 G1, based on the Tyan s2881. 2010-08-20 20:37:27 +00:00
romstage.c Clean up #ifs 2012-05-08 00:34:34 +02:00