aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/intel/i945/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/northbridge/intel/i945/debug.c')
-rw-r--r--src/northbridge/intel/i945/debug.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/northbridge/intel/i945/debug.c b/src/northbridge/intel/i945/debug.c
index ef4f17bc6d..c52f2a67e8 100644
--- a/src/northbridge/intel/i945/debug.c
+++ b/src/northbridge/intel/i945/debug.c
@@ -96,15 +96,3 @@ void dump_spd_registers(void)
printk(BIOS_DEBUG, "\n");
}
}
-
-void dump_mem(unsigned int start, unsigned int end)
-{
- unsigned int i;
- printk(BIOS_DEBUG, "dump_mem:");
- for (i = start; i < end; i++) {
- if ((i & 0xf) == 0)
- printk(BIOS_DEBUG, "\n%08x:", i);
- printk(BIOS_DEBUG, " %02x", (unsigned char)*((unsigned char *)i));
- }
- printk(BIOS_DEBUG, "\n");
-}