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 <haavard.skinnemoen@atmel.com>
This commit is contained in:
parent
a928d0df21
commit
0768b7a872
@ -224,7 +224,6 @@ void board_init_r (gd_t *, ulong) __attribute__ ((noreturn));
|
||||
int checkboard (void);
|
||||
int checkflash (void);
|
||||
int checkdram (void);
|
||||
char * strmhz(char *buf, long hz);
|
||||
int last_stage_init(void);
|
||||
extern ulong monitor_flash_len;
|
||||
int mac_read_from_eeprom(void);
|
||||
@ -615,6 +614,9 @@ int sprintf(char * buf, const char *fmt, ...)
|
||||
__attribute__ ((format (__printf__, 2, 3)));
|
||||
int vsprintf(char *buf, const char *fmt, va_list args);
|
||||
|
||||
/* lib_generic/strmhz.c */
|
||||
char * strmhz(char *buf, long hz);
|
||||
|
||||
/* lib_generic/crc32.c */
|
||||
uint32_t crc32 (uint32_t, const unsigned char *, uint);
|
||||
uint32_t crc32_wd (uint32_t, const unsigned char *, uint, uint);
|
||||
|
@ -115,19 +115,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);
|
||||
}
|
||||
|
||||
|
||||
/************************************************************************
|
||||
* Coloured LED functionality
|
||||
|
@ -40,6 +40,7 @@ COBJS-$(CONFIG_MD5) += md5.o
|
||||
COBJS-y += sha1.o
|
||||
COBJS-$(CONFIG_SHA256) += sha256.o
|
||||
COBJS-y += string.o
|
||||
COBJS-y += strmhz.o
|
||||
COBJS-y += vsprintf.o
|
||||
COBJS-y += zlib.o
|
||||
|
||||
|
36
lib_generic/strmhz.c
Normal file
36
lib_generic/strmhz.c
Normal file
@ -0,0 +1,36 @@
|
||||
/*
|
||||
* (C) Copyright 2002-2006
|
||||
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
||||
*
|
||||
* See file CREDITS for list of people who contributed to this
|
||||
* project.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License as
|
||||
* published by the Free Software Foundation; either version 2 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||
* MA 02111-1307 USA
|
||||
*/
|
||||
#include <common.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);
|
||||
}
|
@ -108,19 +108,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);
|
||||
}
|
||||
|
||||
/************************************************************************
|
||||
* Init Utilities *
|
||||
************************************************************************
|
||||
|
@ -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
|
||||
|
@ -168,19 +168,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
|
||||
|
Loading…
Reference in New Issue
Block a user