aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/lippert/spacerunner-lx
diff options
context:
space:
mode:
authorMyles Watson <mylesgw@gmail.com>2010-06-01 19:25:31 +0000
committerMyles Watson <mylesgw@gmail.com>2010-06-01 19:25:31 +0000
commit80e914ffd59ea011b1d4ba1c1a1a1421dc2c6ecc (patch)
treeb53790b2bfaa77e622cd7ad54a500c0371477a62 /src/mainboard/lippert/spacerunner-lx
parent94de72b919d2a6bdf8f89973b682a53225bf5fcb (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/lippert/spacerunner-lx')
-rw-r--r--src/mainboard/lippert/spacerunner-lx/romstage.c2
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);