You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
1.2 KiB

From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Fu Wei <fu.wei@linaro.org>
Date: Wed, 26 Mar 2014 08:13:07 +0100
Subject: [PATCH] * grub-core/loader/arm64/linux.c: Remove redundant "0x".
---
grub-core/loader/arm64/linux.c | 2 +-
ChangeLog | 4 ++++
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/grub-core/loader/arm64/linux.c b/grub-core/loader/arm64/linux.c
index 65129c21a8d..f1d10a16492 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;
}
diff --git a/ChangeLog b/ChangeLog
index f571f66533b..091535beb5c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-03-26 Fu Wei <fu.wei@linaro.org>
+
+ * grub-core/loader/arm64/linux.c: Remove redundant "0x".
+
2014-02-28 Vladimir Serbinenko <phcoder@gmail.com>
* include/grub/i386/openbsd_bootarg.h: Add addr and frequency fields.