diff options
author | Myles Watson <mylesgw@gmail.com> | 2010-06-01 19:25:31 +0000 |
---|---|---|
committer | Myles Watson <mylesgw@gmail.com> | 2010-06-01 19:25:31 +0000 |
commit | 80e914ffd59ea011b1d4ba1c1a1a1421dc2c6ecc (patch) | |
tree | b53790b2bfaa77e622cd7ad54a500c0371477a62 /src/mainboard | |
parent | 94de72b919d2a6bdf8f89973b682a53225bf5fcb (diff) |
CONFIG_DEBUG is too generic. Remove it and replace it with CONFIG_DEBUG_SMBUS
and CONFIG_DEBUG_PIRQ.
Fix a couple of typos.
Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5603 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/lippert/spacerunner-lx/romstage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/lippert/spacerunner-lx/romstage.c b/src/mainboard/lippert/spacerunner-lx/romstage.c index acf6fdcd69..b9b0e4f048 100644 --- a/src/mainboard/lippert/spacerunner-lx/romstage.c +++ b/src/mainboard/lippert/spacerunner-lx/romstage.c @@ -84,7 +84,7 @@ static inline int spd_read_byte(unsigned int device, unsigned int address) if (device != DIMM0) return 0xFF; /* No DIMM1, don't even try. */ -#if CONFIG_DEBUG +#if CONFIG_DEBUG_SMBUS if (address >= sizeof(spdbytes) || spdbytes[address] == 0xFF) { print_err("ERROR: spd_read_byte(DIMM0, 0x"); print_err_hex8(address); |