From patchwork Mon Nov 9 14:04:27 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fu Wei Fu X-Patchwork-Id: 56220 Delivered-To: patch@linaro.org Received: by 10.112.155.196 with SMTP id vy4csp198163lbb; Mon, 9 Nov 2015 06:05:14 -0800 (PST) X-Received: by 10.140.30.68 with SMTP id c62mr18678697qgc.9.1447077914092; Mon, 09 Nov 2015 06:05:14 -0800 (PST) Return-Path: Received: from lists.gnu.org (lists.gnu.org. [2001:4830:134:3::11]) by mx.google.com with ESMTPS id 82si11119845qhs.124.2015.11.09.06.05.13 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Mon, 09 Nov 2015 06:05:14 -0800 (PST) Received-SPF: pass (google.com: domain of grub-devel-bounces+patch=linaro.org@gnu.org designates 2001:4830:134:3::11 as permitted sender) client-ip=2001:4830:134:3::11; Authentication-Results: mx.google.com; spf=pass (google.com: domain of grub-devel-bounces+patch=linaro.org@gnu.org designates 2001:4830:134:3::11 as permitted sender) smtp.mailfrom=grub-devel-bounces+patch=linaro.org@gnu.org Received: from localhost ([::1]:52892 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zvn4L-0005gv-Qk for patch@linaro.org; Mon, 09 Nov 2015 09:05:13 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:32842) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zvn45-0005gT-5B for grub-devel@gnu.org; Mon, 09 Nov 2015 09:05:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zvn41-0003Hc-US for grub-devel@gnu.org; Mon, 09 Nov 2015 09:04:57 -0500 Received: from mx1.redhat.com ([209.132.183.28]:40474) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zvn41-0003HX-P7 for grub-devel@gnu.org; Mon, 09 Nov 2015 09:04:53 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (Postfix) with ESMTPS id 35EB4C0B60E6; Mon, 9 Nov 2015 14:04:52 +0000 (UTC) Received: from magi-f22.redhat.com (vpn1-6-175.pek2.redhat.com [10.72.6.175]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id tA9E4gwx024736; Mon, 9 Nov 2015 09:04:43 -0500 From: fu.wei@linaro.org To: grub-devel@gnu.org, arvidjaar@gmail.com, phcoder@gmail.com Subject: [PATCH] arm64: Add the missing license macro in fdt module Date: Mon, 9 Nov 2015 22:04:27 +0800 Message-Id: <1447077867-8902-1-git-send-email-fu.wei@linaro.org> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: xen-devel@lists.xensource.com, Ian.Campbell@citrix.com, stefano.stabellini@eu.citrix.com, jcm@redhat.com, leif.lindholm@linaro.org, linaro-uefi@lists.linaro.org, Fu Wei 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: , MIME-Version: 1.0 Errors-To: grub-devel-bounces+patch=linaro.org@gnu.org Sender: grub-devel-bounces+patch=linaro.org@gnu.org From: Fu Wei Signed-off-by: Fu Wei --- grub-core/loader/arm64/fdt.c | 2 ++ 1 file changed, 2 insertions(+) -- 2.5.0 _______________________________________________ Grub-devel mailing list Grub-devel@gnu.org https://lists.gnu.org/mailman/listinfo/grub-devel diff --git a/grub-core/loader/arm64/fdt.c b/grub-core/loader/arm64/fdt.c index 5202c14..901bd7b 100644 --- a/grub-core/loader/arm64/fdt.c +++ b/grub-core/loader/arm64/fdt.c @@ -25,6 +25,8 @@ #include #include +GRUB_MOD_LICENSE ("GPLv3+"); + static void *loaded_fdt; static void *fdt;