diff options
author | Greg Watson <jarrah@users.sourceforge.net> | 2003-07-24 14:20:01 +0000 |
---|---|---|
committer | Greg Watson <jarrah@users.sourceforge.net> | 2003-07-24 14:20:01 +0000 |
commit | eb98b1c3190ee3504c865e10b64fc38d12d4d050 (patch) | |
tree | 611e81757478c86b9a138dd013fc219b5c717456 /src/include/device/chip.h | |
parent | 505322e48cf2b9f81bb8022a384872f9a890a619 (diff) |
#if was reversed
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1028 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/include/device/chip.h')
-rw-r--r-- | src/include/device/chip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/device/chip.h b/src/include/device/chip.h index 448665ecd0..d1132a1f36 100644 --- a/src/include/device/chip.h +++ b/src/include/device/chip.h @@ -6,7 +6,7 @@ */ /* some of the types of resources chips can control */ -#ifndef CONFIG_CHIP_CONFIGURE +#if CONFIG_CHIP_CONFIGURE == 1 #define CONFIGURE(pass) chip_configure(&static_root, pass) #else #define CONFIGURE(pass) |