[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <160698251802.3364.12660165138923593684.tip-bot2@tip-bot2>
Date: Thu, 03 Dec 2020 08:01:58 -0000
From: "tip-bot2 for Zou Wei" <tip-bot2@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: Zou Wei <zou_wei@...wei.com>, Borislav Petkov <bp@...e.de>,
Hans de Goede <hdegoede@...hat.com>, x86@...nel.org,
linux-kernel@...r.kernel.org
Subject: [tip: x86/platform] x86/platform/uv: Make uv_pcibus_kset and
uv_hubs_kset static
The following commit has been merged into the x86/platform branch of tip:
Commit-ID: 0c683e9de0c78ee53e220eac9ee3604ca662737a
Gitweb: https://git.kernel.org/tip/0c683e9de0c78ee53e220eac9ee3604ca662737a
Author: Zou Wei <zou_wei@...wei.com>
AuthorDate: Mon, 30 Nov 2020 19:11:53 +08:00
Committer: Borislav Petkov <bp@...e.de>
CommitterDate: Thu, 03 Dec 2020 08:53:47 +01:00
x86/platform/uv: Make uv_pcibus_kset and uv_hubs_kset static
Fix the following sparse warnings:
drivers/platform/x86/uv_sysfs.c:22:13: warning: symbol \
'uv_pcibus_kset' was not declared. Should it be static?
drivers/platform/x86/uv_sysfs.c:23:13: warning: symbol \
'uv_hubs_kset' was not declared. Should it be static?
Signed-off-by: Zou Wei <zou_wei@...wei.com>
Signed-off-by: Borislav Petkov <bp@...e.de>
Acked-by: Hans de Goede <hdegoede@...hat.com>
Link: https://lkml.kernel.org/r/1606734713-43919-1-git-send-email-zou_wei@huawei.com
---
drivers/platform/x86/uv_sysfs.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/platform/x86/uv_sysfs.c b/drivers/platform/x86/uv_sysfs.c
index e17ce8c..c27f5ff 100644
--- a/drivers/platform/x86/uv_sysfs.c
+++ b/drivers/platform/x86/uv_sysfs.c
@@ -19,8 +19,8 @@
#define INVALID_CNODE -1
struct kobject *sgi_uv_kobj;
-struct kset *uv_pcibus_kset;
-struct kset *uv_hubs_kset;
+static struct kset *uv_pcibus_kset;
+static struct kset *uv_hubs_kset;
static struct uv_bios_hub_info *hub_buf;
static struct uv_bios_port_info **port_buf;
static struct uv_hub **uv_hubs;
Powered by blists - more mailing lists