From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1WOMv9-0004Zl-5a for mharc-grub-devel@gnu.org; Fri, 14 Mar 2014 03:52:47 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38624) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WOMDb-0003Av-CW for grub-devel@gnu.org; Fri, 14 Mar 2014 03:07:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WOMDV-0001SN-IF for grub-devel@gnu.org; Fri, 14 Mar 2014 03:07:47 -0400 Received: from mail-pd0-f171.google.com ([209.85.192.171]:38886) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WOMDV-0001SG-CA for grub-devel@gnu.org; Fri, 14 Mar 2014 03:07:41 -0400 Received: by mail-pd0-f171.google.com with SMTP id r10so2173444pdi.2 for ; Fri, 14 Mar 2014 00:07:40 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:reply-to:organization :user-agent:mime-version:to:cc:subject:content-type :content-transfer-encoding; bh=eDN/lo/w72z5FpLg6AZqMwNakdooSfGk6wf2/N4pZJ8=; b=gVEjnbi1YI3VQPagUBfxPIuFjs5b76zGxJKio0Tjcx67B65qSjzj86x/l4WSXBJYCR pfKVkLN7l+7xz4amDybP8CKPY5AUOBazpp7oEmP56VJndFDs7DfLz6DYgubrjdo7welJ CK0rKc7T1YrFvSFFPYlp0B6ljc2m+/8nNPTAp6GXi1JWZmlPp2MP6BAR/y/mbwYV1p31 OIJXvmYb2H/NmDoHiZh5R9MzNRO595zCoUql5ICJaU51HzfC7SLtKxoKCx23KeWIcN+L CAPSk7YbcjrH10VcKQjVo3wQICUsLpE+eqYF7gBWcNIDSvGDFEcDKr51rObtUqvlrVT1 uPqA== X-Gm-Message-State: ALoCoQk6jRBn+e/VfkjzbmjvEW/ghWSi7t0tcxlnTfZsOupk2ciiPytyrNCXf3G94a/dmrZgWU7p X-Received: by 10.66.217.169 with SMTP id oz9mr1170285pac.20.1394780859939; Fri, 14 Mar 2014 00:07:39 -0700 (PDT) Received: from [192.168.1.11] ([222.78.99.82]) by mx.google.com with ESMTPSA id xk1sm21187228pac.21.2014.03.14.00.07.28 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 14 Mar 2014 00:07:38 -0700 (PDT) Message-ID: <5322AAAD.5080607@linaro.org> Date: Fri, 14 Mar 2014 15:07:25 +0800 From: Fu Wei Organization: Linaro User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: grub-devel@gnu.org Subject: [PATCH]arm64: Fix a little debug info bug for aarch64: delete redundant "0x" Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.85.192.171 X-Mailman-Approved-At: Fri, 14 Mar 2014 03:52:44 -0400 Cc: Leif Lindholm X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: The development of GNU GRUB List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Mar 2014 07:07:53 -0000 A little fix for a debug info bug for aarch64: delete redundant "0x". Signed-off-by: Fu Wei --- >From d4ba29cc4c5dfeb931b0b5b87e1bdca6c2b42200 Mon Sep 17 00:00:00 2001 From: Fu Wei 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