From 972d5cf040aebbb8052767a4a88ad99a961ad2bf Mon Sep 17 00:00:00 2001 From: Kyösti Mälkki Date: Sun, 26 Jan 2014 14:44:18 +0200 Subject: Move hexdump32() to lib/hexdump. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Needs printk and is not a console core function. Change-Id: Id90a363eca133af4469663c1e8b504baa70471e0 Signed-off-by: Kyösti Mälkki Reviewed-on: http://review.coreboot.org/5155 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: Alexandru Gagniuc --- src/console/console.c | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'src/console') 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__ */ -- cgit v1.2.3