Commit 0e786f32 authored by Jason Yan's avatar Jason Yan Committed by Guenter Roeck

hwmon: (k10temp) make some symbols static

Fix the following sparse warning:

drivers/hwmon/k10temp.c:189:12: warning: symbol 'k10temp_temp_label' was
not declared. Should it be static?
drivers/hwmon/k10temp.c:202:12: warning: symbol 'k10temp_in_label' was
not declared. Should it be static?
drivers/hwmon/k10temp.c:207:12: warning: symbol 'k10temp_curr_label' was
not declared. Should it be static?
Reported-by: default avatarHulk Robot <hulkci@huawei.com>
Signed-off-by: default avatarJason Yan <yanaijie@huawei.com>
Link: https://lore.kernel.org/r/20200409084502.42126-1-yanaijie@huawei.comSigned-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent ed08ebb7
...@@ -186,7 +186,7 @@ static long get_raw_temp(struct k10temp_data *data) ...@@ -186,7 +186,7 @@ static long get_raw_temp(struct k10temp_data *data)
return temp; return temp;
} }
const char *k10temp_temp_label[] = { static const char *k10temp_temp_label[] = {
"Tctl", "Tctl",
"Tdie", "Tdie",
"Tccd1", "Tccd1",
...@@ -199,12 +199,12 @@ const char *k10temp_temp_label[] = { ...@@ -199,12 +199,12 @@ const char *k10temp_temp_label[] = {
"Tccd8", "Tccd8",
}; };
const char *k10temp_in_label[] = { static const char *k10temp_in_label[] = {
"Vcore", "Vcore",
"Vsoc", "Vsoc",
}; };
const char *k10temp_curr_label[] = { static const char *k10temp_curr_label[] = {
"Icore", "Icore",
"Isoc", "Isoc",
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment