Remove extra 0x before %p format strings introduced by r296182
This commit is contained in:
parent
aaf8b608ca
commit
3fd8559331
@ -421,7 +421,7 @@ fdt_setup_fdtp()
|
||||
/* If we were given the address of a valid blob in memory, use it. */
|
||||
if (fdt_to_load != NULL) {
|
||||
if (fdt_load_dtb_addr(fdt_to_load) == 0) {
|
||||
printf("Using DTB from memory address 0x%p.\n",
|
||||
printf("Using DTB from memory address %p.\n",
|
||||
fdt_to_load);
|
||||
return (0);
|
||||
}
|
||||
|
@ -85,7 +85,7 @@ __elfN(uboot_exec)(struct preloaded_file *fp)
|
||||
return (error);
|
||||
|
||||
entry = (void *)e->e_entry;
|
||||
printf("Kernel entry at 0x%p...\n", entry);
|
||||
printf("Kernel entry at %p...\n", entry);
|
||||
|
||||
dev_cleanup();
|
||||
printf("Kernel args: %s\n", fp->f_args);
|
||||
|
@ -469,7 +469,7 @@ ub_dump_di(int handle)
|
||||
int i;
|
||||
|
||||
printf("device info (%d):\n", handle);
|
||||
printf(" cookie\t= 0x%p\n", di->cookie);
|
||||
printf(" cookie\t= %p\n", di->cookie);
|
||||
printf(" type\t\t= 0x%08x\n", di->type);
|
||||
|
||||
if (di->type == DEV_TYP_NET) {
|
||||
|
Loading…
Reference in New Issue
Block a user