diff options
author | weiyongjun (A) <weiyongjun1@huawei.com> | 2018-01-10 14:19:40 +0000 |
---|---|---|
committer | Kevin Hilman <khilman@baylibre.com> | 2018-02-12 14:15:47 -0800 |
commit | 82a759c91801d1f9851196d73516a504064e472c (patch) | |
tree | fe6de6016e6b606901c8235b44b06e40d84bbad7 /drivers/soc/amlogic | |
parent | 87f88732d25e6175cb4faa8070658f604660d720 (diff) | |
download | blackbird-op-linux-82a759c91801d1f9851196d73516a504064e472c.tar.gz blackbird-op-linux-82a759c91801d1f9851196d73516a504064e472c.zip |
meson-mx-socinfo: Make local function meson_mx_socinfo_init() static
Fixes the following sparse warnings:
drivers/soc/amlogic/meson-mx-socinfo.c:107:12: warning:
symbol 'meson_mx_socinfo_init' was not declared. Should it be static?
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
Diffstat (limited to 'drivers/soc/amlogic')
-rw-r--r-- | drivers/soc/amlogic/meson-mx-socinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/amlogic/meson-mx-socinfo.c b/drivers/soc/amlogic/meson-mx-socinfo.c index 7bfff5ff22a2..78f0f1aeca57 100644 --- a/drivers/soc/amlogic/meson-mx-socinfo.c +++ b/drivers/soc/amlogic/meson-mx-socinfo.c @@ -104,7 +104,7 @@ static const struct of_device_id meson_mx_socinfo_analog_top_ids[] = { { /* sentinel */ } }; -int __init meson_mx_socinfo_init(void) +static int __init meson_mx_socinfo_init(void) { struct soc_device_attribute *soc_dev_attr; struct soc_device *soc_dev; |