[<prev] [next>] [day] [month] [year] [list]
Message-ID: <168444739404.404.1981750002519034291.tip-bot2@tip-bot2>
Date: Thu, 18 May 2023 22:03:14 -0000
From: "tip-bot2 for Arnd Bergmann" <tip-bot2@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: Arnd Bergmann <arnd@...db.de>,
Dave Hansen <dave.hansen@...ux.intel.com>,
Alexander Lobakin <aleksander.lobakin@...el.com>,
x86@...nel.org, linux-kernel@...r.kernel.org
Subject: [tip: x86/cleanups] x86/quirks: Include linux/pnp.h for
arch_pnpbios_disabled()
The following commit has been merged into the x86/cleanups branch of tip:
Commit-ID: 056b44a4d10907ec8153863b2a0564e808ef1440
Gitweb: https://git.kernel.org/tip/056b44a4d10907ec8153863b2a0564e808ef1440
Author: Arnd Bergmann <arnd@...db.de>
AuthorDate: Tue, 16 May 2023 21:35:38 +02:00
Committer: Dave Hansen <dave.hansen@...ux.intel.com>
CommitterDate: Thu, 18 May 2023 11:56:18 -07:00
x86/quirks: Include linux/pnp.h for arch_pnpbios_disabled()
arch_pnpbios_disabled() is defined in architecture code on x86, but this
does not include the appropriate header, causing a warning:
arch/x86/kernel/platform-quirks.c:42:13: error: no previous prototype for 'arch_pnpbios_disabled' [-Werror=missing-prototypes]
Signed-off-by: Arnd Bergmann <arnd@...db.de>
Signed-off-by: Dave Hansen <dave.hansen@...ux.intel.com>
Reviewed-by: Alexander Lobakin <aleksander.lobakin@...el.com>
Link: https://lore.kernel.org/all/20230516193549.544673-10-arnd%40kernel.org
---
arch/x86/kernel/platform-quirks.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/x86/kernel/platform-quirks.c b/arch/x86/kernel/platform-quirks.c
index b348a67..b525fe6 100644
--- a/arch/x86/kernel/platform-quirks.c
+++ b/arch/x86/kernel/platform-quirks.c
@@ -1,6 +1,7 @@
// SPDX-License-Identifier: GPL-2.0
#include <linux/kernel.h>
#include <linux/init.h>
+#include <linux/pnp.h>
#include <asm/setup.h>
#include <asm/bios_ebda.h>
Powered by blists - more mailing lists