diff options
author | weiyongjun (A) <weiyongjun1@huawei.com> | 2018-01-10 09:19:48 -0500 |
---|---|---|
committer | Kevin Hilman <khilman@baylibre.com> | 2018-02-12 17:15:47 -0500 |
commit | 01517dfc819f003855c1893d9382581cafe2877b (patch) | |
tree | 106b9ab7102e59023372536b657039eaa2817418 /drivers/soc | |
parent | 82a759c91801d1f9851196d73516a504064e472c (diff) |
meson-gx-socinfo: make local function meson_gx_socinfo_init static
Fixes the following sparse warnings:
drivers/soc/amlogic/meson-gx-socinfo.c:100:12: warning:
symbol 'meson_gx_socinfo_init' was not declared. Should it be static?
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Acked-by: Neil Armstrong <narmstrong@baylibre.com>
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
Diffstat (limited to 'drivers/soc')
-rw-r--r-- | drivers/soc/amlogic/meson-gx-socinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/amlogic/meson-gx-socinfo.c b/drivers/soc/amlogic/meson-gx-socinfo.c index f2d8c3c53ea4..ea091f1f7dae 100644 --- a/drivers/soc/amlogic/meson-gx-socinfo.c +++ b/drivers/soc/amlogic/meson-gx-socinfo.c | |||
@@ -97,7 +97,7 @@ static const char *socinfo_to_soc_id(u32 socinfo) | |||
97 | return "Unknown"; | 97 | return "Unknown"; |
98 | } | 98 | } |
99 | 99 | ||
100 | int __init meson_gx_socinfo_init(void) | 100 | static int __init meson_gx_socinfo_init(void) |
101 | { | 101 | { |
102 | struct soc_device_attribute *soc_dev_attr; | 102 | struct soc_device_attribute *soc_dev_attr; |
103 | struct soc_device *soc_dev; | 103 | struct soc_device *soc_dev; |