From nobody Mon Feb 9 22: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 CEA6BCA0FE6 for ; Fri, 1 Sep 2023 07:00:17 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1348427AbjIAHAT (ORCPT ); Fri, 1 Sep 2023 03:00:19 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38992 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1348434AbjIAHAR (ORCPT ); Fri, 1 Sep 2023 03:00:17 -0400 Received: from relmlie6.idc.renesas.com (relmlor2.renesas.com [210.160.252.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 7273810DF for ; Fri, 1 Sep 2023 00:00:12 -0700 (PDT) X-IronPort-AV: E=Sophos;i="6.02,218,1688396400"; d="scan'208";a="178409384" Received: from unknown (HELO relmlir5.idc.renesas.com) ([10.200.68.151]) by relmlie6.idc.renesas.com with ESMTP; 01 Sep 2023 16:00:12 +0900 Received: from localhost.localdomain (unknown [10.226.92.203]) by relmlir5.idc.renesas.com (Postfix) with ESMTP id 76C264008C5C; Fri, 1 Sep 2023 16:00:08 +0900 (JST) From: Biju Das To: Jaroslav Kysela , Takashi Iwai Cc: Biju Das , Liam Girdwood , Mark Brown , Charles Keepax , =?UTF-8?q?Uwe=20Kleine-K=C3=B6nig?= , Andy Shevchenko , patches@opensource.cirrus.com, alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org, Biju Das Subject: [PATCH v4 3/3] ASoC: wm8580: Move OF table Date: Fri, 1 Sep 2023 07:59:52 +0100 Message-Id: <20230901065952.18760-4-biju.das.jz@bp.renesas.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230901065952.18760-1-biju.das.jz@bp.renesas.com> References: <20230901065952.18760-1-biju.das.jz@bp.renesas.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Move OF table near to the user. Signed-off-by: Biju Das Acked-by: Charles Keepax --- v3->v4: * Created patch#2 for removing trailing comma in the terminator entry for OF table. v3: * New patch. --- sound/soc/codecs/wm8580.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/sound/soc/codecs/wm8580.c b/sound/soc/codecs/wm8580.c index ba47b01f13e7..28c0ba348634 100644 --- a/sound/soc/codecs/wm8580.c +++ b/sound/soc/codecs/wm8580.c @@ -988,13 +988,6 @@ static const struct wm8580_driver_data wm8581_data =3D= { .num_dacs =3D 4, }; =20 -static const struct of_device_id wm8580_of_match[] =3D { - { .compatible =3D "wlf,wm8580", .data =3D &wm8580_data }, - { .compatible =3D "wlf,wm8581", .data =3D &wm8581_data }, - { } -}; -MODULE_DEVICE_TABLE(of, wm8580_of_match); - static int wm8580_i2c_probe(struct i2c_client *i2c) { struct wm8580_priv *wm8580; @@ -1031,6 +1024,13 @@ static int wm8580_i2c_probe(struct i2c_client *i2c) return ret; } =20 +static const struct of_device_id wm8580_of_match[] =3D { + { .compatible =3D "wlf,wm8580", .data =3D &wm8580_data }, + { .compatible =3D "wlf,wm8581", .data =3D &wm8581_data }, + { } +}; +MODULE_DEVICE_TABLE(of, wm8580_of_match); + static const struct i2c_device_id wm8580_i2c_id[] =3D { { "wm8580", (kernel_ulong_t)&wm8580_data }, { "wm8581", (kernel_ulong_t)&wm8581_data }, --=20 2.25.1