From: weiyongjun (A) Date: Wed, 10 Jan 2018 14:19:40 +0000 (+0000) Subject: meson-mx-socinfo: Make local function meson_mx_socinfo_init() static X-Git-Tag: v4.17-rc1~103^2~4^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=82a759c91801d1f9851196d73516a504064e472c;p=thirdparty%2Fkernel%2Flinux.git 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 Signed-off-by: Kevin Hilman --- diff --git a/drivers/soc/amlogic/meson-mx-socinfo.c b/drivers/soc/amlogic/meson-mx-socinfo.c index 7bfff5ff22a2a..78f0f1aeca578 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;