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.
40 lines
1.2 KiB
40 lines
1.2 KiB
7 years ago
|
From 234e316455c92875f3cc7d35f11da7f7a4d3cb6b 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 067/237] * grub-core/loader/arm64/linux.c: Remove redundant
|
||
|
"0x".
|
||
|
|
||
|
---
|
||
|
ChangeLog | 4 ++++
|
||
|
grub-core/loader/arm64/linux.c | 2 +-
|
||
|
2 files changed, 5 insertions(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/ChangeLog b/ChangeLog
|
||
|
index f571f66..091535b 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.
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
--
|
||
|
2.9.3
|
||
|
|