diff options
| author | Becky Bruce <becky.bruce@freescale.com> | 2008-06-09 20:37:17 -0500 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-06-12 00:55:43 +0200 | 
| commit | 61b09fc2952dc636017df4e7970e3de132276ba1 (patch) | |
| tree | 3574cc54b798e03e5c7eda38a66368874634014e | |
| parent | b57ca3e128cc10a133ba79bc7ec3e7b50e7c8fbe (diff) | |
| download | olio-uboot-2014.01-61b09fc2952dc636017df4e7970e3de132276ba1.tar.xz olio-uboot-2014.01-61b09fc2952dc636017df4e7970e3de132276ba1.zip | |
Change print_size to take phys_size_t
Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
| -rw-r--r-- | include/common.h | 2 | ||||
| -rw-r--r-- | lib_generic/display_options.c | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/include/common.h b/include/common.h index 26e1b469a..8fa339db7 100644 --- a/include/common.h +++ b/include/common.h @@ -204,7 +204,7 @@ void	hang		(void) __attribute__ ((noreturn));  /* */  long int initdram (int);  int	display_options (void); -void	print_size (ulong, const char *); +void	print_size (phys_size_t, const char *);  int	print_buffer (ulong addr, void* data, uint width, uint count, uint linelen);  /* common/main.c */ diff --git a/lib_generic/display_options.c b/lib_generic/display_options.c index 5ddd94fd5..a52fa0454 100644 --- a/lib_generic/display_options.c +++ b/lib_generic/display_options.c @@ -42,7 +42,7 @@ int display_options (void)   * print sizes as "xxx kB", "xxx.y kB", "xxx MB" or "xxx.y MB" as needed;   * allow for optional trailing string (like "\n")   */ -void print_size (ulong size, const char *s) +void print_size (phys_size_t size, const char *s)  {  	ulong m, n;  	ulong d = 1 << 20;		/* 1 MB */ |