Skip to content
Snippets Groups Projects
Commit 61b09fc2 authored by Becky Bruce's avatar Becky Bruce Committed by Wolfgang Denk
Browse files

Change print_size to take phys_size_t

parent b57ca3e1
No related branches found
No related tags found
No related merge requests found
...@@ -204,7 +204,7 @@ void hang (void) __attribute__ ((noreturn)); ...@@ -204,7 +204,7 @@ void hang (void) __attribute__ ((noreturn));
/* */ /* */
long int initdram (int); long int initdram (int);
int display_options (void); 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); int print_buffer (ulong addr, void* data, uint width, uint count, uint linelen);
/* common/main.c */ /* common/main.c */
......
...@@ -42,7 +42,7 @@ int display_options (void) ...@@ -42,7 +42,7 @@ int display_options (void)
* print sizes as "xxx kB", "xxx.y kB", "xxx MB" or "xxx.y MB" as needed; * print sizes as "xxx kB", "xxx.y kB", "xxx MB" or "xxx.y MB" as needed;
* allow for optional trailing string (like "\n") * 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 m, n;
ulong d = 1 << 20; /* 1 MB */ ulong d = 1 << 20; /* 1 MB */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment