From mboxrd@z Thu Jan 1 00:00:00 1970 From: kbuild test robot Subject: [RFC PATCH] x86/boot: get_acpi_srat_table() can be static Date: Tue, 11 Sep 2018 16:52:26 +0800 Message-ID: <20180911085226.GA25670@athens> References: <20180910124015.18073-2-fanc.fnst@cn.fujitsu.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <20180910124015.18073-2-fanc.fnst@cn.fujitsu.com> Sender: linux-kernel-owner@vger.kernel.org Cc: kbuild-all@01.org, tglx@linutronix.de, mingo@redhat.com, hpa@zytor.com, x86@kernel.org, linux-kernel@vger.kernel.org, keescook@chromium.org, bhe@redhat.com, indou.takao@jp.fujitsu.com, caoj.fnst@cn.fujitsu.com, douly.fnst@cn.fujitsu.com, Chao Fan , "Rafael J. Wysocki" , Len Brown , Ard Biesheuvel , linux-efi@vger.kernel.org, linux-acpi@vger.kernel.org List-Id: linux-efi@vger.kernel.org Fixes: cc1a4e2a5474 ("x86/boot: Add acpitb.c to parse acpi tables") Signed-off-by: kbuild test robot --- acpitb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/boot/compressed/acpitb.c b/arch/x86/boot/compressed/acpitb.c index 66c5154..4ddd732 100644 --- a/arch/x86/boot/compressed/acpitb.c +++ b/arch/x86/boot/compressed/acpitb.c @@ -279,7 +279,7 @@ static acpi_physical_address get_rsdp_addr(void) return pa; } -struct acpi_table_header *get_acpi_srat_table(void) +static struct acpi_table_header *get_acpi_srat_table(void) { char *args = (char *)get_cmd_line_ptr(); acpi_physical_address acpi_table;