aboutsummaryrefslogtreecommitdiff
path: root/src/console
diff options
context:
space:
mode:
Diffstat (limited to 'src/console')
-rw-r--r--src/console/console.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/console/console.c b/src/console/console.c
index a31e293af4..38ac3e7d35 100644
--- a/src/console/console.c
+++ b/src/console/console.c
@@ -137,23 +137,3 @@ void console_init(void)
#endif /* CONFIG_EARLY_CONSOLE */
}
#endif
-
-#ifndef __ROMCC__
-void hexdump32(char LEVEL, const void *d, int len)
-{
- int count=0;
-
- while (len > 0) {
- if (count % 8 == 0) {
- printk(LEVEL,"\n");
- printk(LEVEL, "%p:", d);
- }
- printk(LEVEL, " 0x%08lx", *(unsigned long*)d);
- count++;
- len--;
- d += 4;
- }
-
- printk(LEVEL,"\n\n");
-}
-#endif /* !__ROMCC__ */