From nobody Sat Apr 11 02:19:15 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9A039C25B08 for ; Wed, 17 Aug 2022 09:07:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233941AbiHQJHL (ORCPT ); Wed, 17 Aug 2022 05:07:11 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36152 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229764AbiHQJHJ (ORCPT ); Wed, 17 Aug 2022 05:07:09 -0400 Received: from szxga01-in.huawei.com (szxga01-in.huawei.com [45.249.212.187]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 01D5669F41 for ; Wed, 17 Aug 2022 02:07:07 -0700 (PDT) Received: from dggpemm500021.china.huawei.com (unknown [172.30.72.54]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4M72B91R0wzkWXl; Wed, 17 Aug 2022 17:03:45 +0800 (CST) Received: from dggpemm500007.china.huawei.com (7.185.36.183) by dggpemm500021.china.huawei.com (7.185.36.109) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.24; Wed, 17 Aug 2022 17:07:06 +0800 Received: from huawei.com (10.175.103.91) by dggpemm500007.china.huawei.com (7.185.36.183) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.24; Wed, 17 Aug 2022 17:07:05 +0800 From: Yang Yingliang To: , CC: , , Subject: [PATCH -next] ASoC: codecs: es8326: change es8326_regmap_config to static Date: Wed, 17 Aug 2022 17:15:19 +0800 Message-ID: <20220817091519.2487385-1-yangyingliang@huawei.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Originating-IP: [10.175.103.91] X-ClientProxiedBy: dggems703-chm.china.huawei.com (10.3.19.180) To dggpemm500007.china.huawei.com (7.185.36.183) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" es8326_regmap_config is only used in es8326.c now, change it to static. Signed-off-by: Yang Yingliang --- sound/soc/codecs/es8326.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/codecs/es8326.c b/sound/soc/codecs/es8326.c index 975302b2a61d..87c1cc16592b 100755 --- a/sound/soc/codecs/es8326.c +++ b/sound/soc/codecs/es8326.c @@ -207,7 +207,7 @@ static const struct regmap_access_table es8326_volatile= _table =3D { .n_yes_ranges =3D ARRAY_SIZE(es8326_volatile_ranges), }; =20 -const struct regmap_config es8326_regmap_config =3D { +static const struct regmap_config es8326_regmap_config =3D { .reg_bits =3D 8, .val_bits =3D 8, .max_register =3D 0xff, --=20 2.25.1