From 0768b7a872964085eece8d5e9fec9175e9deb161 Mon Sep 17 00:00:00 2001 From: Haavard Skinnemoen Date: Mon, 18 Aug 2008 13:41:27 +0200 Subject: Consolidate strmhz() implementation ARM, i386, m68k and ppc all have identical implementations of strmhz(). Other architectures don't provide this function at all. This patch moves strmhz() into lib_generic, reducing code duplication and providing a more unified API across architectures. Signed-off-by: Haavard Skinnemoen --- lib_m68k/board.c | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'lib_m68k') diff --git a/lib_m68k/board.c b/lib_m68k/board.c index dedc9e408..e59c6b085 100644 --- a/lib_m68k/board.c +++ b/lib_m68k/board.c @@ -140,23 +140,6 @@ void *sbrk (ptrdiff_t increment) return ((void *)old); } -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); -} - /* * All attempts to come up with a "common" initialization sequence * that works for all boards and architectures failed: some of the -- cgit v1.2.3