diff options
| author | Ed Swarthout <Ed.Swarthout@freescale.com> | 2011-03-05 10:28:17 -0600 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-03-22 23:34:36 +0100 | 
| commit | 55f7934d2b07a62027cb05484ea3f10666a855d1 (patch) | |
| tree | 73d16bdb28ae1f6aa53f9a9c3a6ca2de867cfc33 /include/common.h | |
| parent | 6dc1eceb9c5f42216f1ba0e0ef538015b0aa10bc (diff) | |
| download | olio-uboot-2014.01-55f7934d2b07a62027cb05484ea3f10666a855d1.tar.xz olio-uboot-2014.01-55f7934d2b07a62027cb05484ea3f10666a855d1.zip | |
strmhz: Make hz unsigned to support greater than 2146 MHz clock
For example, an input of 0x80000000 should print:
2147.484 instead of -2147.-483.
Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'include/common.h')
| -rw-r--r-- | include/common.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/include/common.h b/include/common.h index d8c912d09..893af5cc1 100644 --- a/include/common.h +++ b/include/common.h @@ -648,7 +648,7 @@ int	sprintf(char * buf, const char *fmt, ...)  int	vsprintf(char *buf, const char *fmt, va_list args);  /* lib/strmhz.c */ -char *	strmhz(char *buf, long hz); +char *	strmhz(char *buf, unsigned long hz);  /* lib/crc32.c */  #include <u-boot/crc.h> |