summaryrefslogtreecommitdiffstats
path: root/arch/ppc/lib/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/ppc/lib/board.c')
-rw-r--r--arch/ppc/lib/board.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/arch/ppc/lib/board.c b/arch/ppc/lib/board.c
index bd82a73f51..bd701a8f1f 100644
--- a/arch/ppc/lib/board.c
+++ b/arch/ppc/lib/board.c
@@ -32,19 +32,6 @@
#include <reloc.h>
#include <asm-generic/memory_layout.h>
-char *strmhz (char *buf, long hz)
-{
- long l, n;
- long m;
-
- n = hz / 1000000L;
- l = sprintf (buf, "%ld", n);
- m = (hz % 1000000L) / 1000L;
- if (m != 0)
- sprintf (buf + l, ".%03ld", m);
- return (buf);
-}
-
/************************************************************************
*
* This is the next part if the initialization sequence: we are now