aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/intel/e7505/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/northbridge/intel/e7505/debug.c')
-rw-r--r--src/northbridge/intel/e7505/debug.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/northbridge/intel/e7505/debug.c b/src/northbridge/intel/e7505/debug.c
index f3a27e2b73..c21e321de4 100644
--- a/src/northbridge/intel/e7505/debug.c
+++ b/src/northbridge/intel/e7505/debug.c
@@ -183,15 +183,3 @@ void dump_io_resources(unsigned port)
port++;
}
}
-
-void dump_mem(unsigned start, unsigned end)
-{
- unsigned 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");
-}