Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965142AbeAJONl (ORCPT + 1 other); Wed, 10 Jan 2018 09:13:41 -0500 Received: from szxga06-in.huawei.com ([45.249.212.32]:46803 "EHLO huawei.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S965016AbeAJONj (ORCPT ); Wed, 10 Jan 2018 09:13:39 -0500 From: Wei Yongjun To: Carlo Caione , Kevin Hilman , Martin Blumenstingl CC: Wei Yongjun , , , , Subject: [PATCH -next] meson-mx-socinfo: Make local function meson_mx_socinfo_init() static Date: Wed, 10 Jan 2018 14:19:40 +0000 Message-ID: <1515593980-78559-1-git-send-email-weiyongjun1@huawei.com> X-Mailer: git-send-email 1.8.3.1 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 X-Originating-IP: [10.175.113.25] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: 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 --- drivers/soc/amlogic/meson-mx-socinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/soc/amlogic/meson-mx-socinfo.c b/drivers/soc/amlogic/meson-mx-socinfo.c index 7bfff5f..78f0f1a 100644 --- a/drivers/soc/amlogic/meson-mx-socinfo.c +++ b/drivers/soc/amlogic/meson-mx-socinfo.c @@ -104,7 +104,7 @@ static const char *meson_mx_socinfo_soc_id(unsigned int major_ver, { /* 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;