From: weiyongjun (A) Date: Wed, 10 Jan 2018 14:19:48 +0000 (+0000) Subject: meson-gx-socinfo: make local function meson_gx_socinfo_init static X-Git-Tag: v4.17-rc1~103^2~4^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=01517dfc819f003855c1893d9382581cafe2877b;p=thirdparty%2Fkernel%2Flinux.git 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 Acked-by: Neil Armstrong Signed-off-by: Kevin Hilman --- diff --git a/drivers/soc/amlogic/meson-gx-socinfo.c b/drivers/soc/amlogic/meson-gx-socinfo.c index f2d8c3c53ea44..ea091f1f7dae6 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) return "Unknown"; } -int __init meson_gx_socinfo_init(void) +static int __init meson_gx_socinfo_init(void) { struct soc_device_attribute *soc_dev_attr; struct soc_device *soc_dev;