* [PATCH]arm64: Fix a little debug info bug for aarch64: delete redundant "0x"
@ 2014-03-14 7:07 Fu Wei
0 siblings, 0 replies; only message in thread
From: Fu Wei @ 2014-03-14 7:07 UTC (permalink / raw)
To: grub-devel; +Cc: Leif Lindholm
A little fix for a debug info bug for aarch64: delete redundant "0x".
Signed-off-by: Fu Wei <fu.wei@linaro.org>
---
From d4ba29cc4c5dfeb931b0b5b87e1bdca6c2b42200 Mon Sep 17 00:00:00 2001
From: Fu Wei <fu.wei@linaro.org>
Date: Fri, 14 Mar 2014 14:58:24 +0800
Subject: [PATCH] Fix a little debug info bug for aarch64: delete redundant
"0x"
---
grub-core/loader/arm64/linux.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/grub-core/loader/arm64/linux.c b/grub-core/loader/arm64/linux.c
index 65129c2..f1d10a1 100644
--- a/grub-core/loader/arm64/linux.c
+++ b/grub-core/loader/arm64/linux.c
@@ -68,7 +68,7 @@ get_firmware_fdt (void)
if (grub_memcmp (&tables[i].vendor_guid, &fdt_guid, sizeof (fdt_guid)) == 0)
{
firmware_fdt = tables[i].vendor_table;
- grub_dprintf ("linux", "found registered FDT @ 0x%p\n", firmware_fdt);
+ grub_dprintf ("linux", "found registered FDT @ %p\n", firmware_fdt);
break;
}
--
1.8.3.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2014-03-14 7:52 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-14 7:07 [PATCH]arm64: Fix a little debug info bug for aarch64: delete redundant "0x" Fu Wei
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.