From patchwork Mon Aug 26 08:49:21 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Liao Chen X-Patchwork-Id: 823169 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 alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id CEDDEC54735 for ; Tue, 27 Aug 2024 12:03:55 +0000 (UTC) Received: from alsa1.perex.cz (alsa1.perex.cz [207.180.221.201]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by alsa0.perex.cz (Postfix) with ESMTPS id 117D284A; Tue, 27 Aug 2024 14:03:43 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa0.perex.cz 117D284A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=alsa-project.org; s=default; t=1724760233; bh=5POpXNON5NQRXTjqqdtKhe5QaC0FzuhkdRz7WSB7mH4=; h=From:To:CC:Subject:Date:In-Reply-To:References:List-Id: List-Archive:List-Help:List-Owner:List-Post:List-Subscribe: List-Unsubscribe:From; b=gZcq+u4601Ee1WLRT+wgAAarutPDFak78D7hTuNJ6hvUopX5nVX2X9Usl1u0z5H1J ihBlvzZXSX87V4UkYaCn6qCs3ISVhJJ6JLu2aayCduEm5KfOyivP35k3SyGBXfi/ma RnM1bed12nOr9ED41nNL/85TNdUHflKL9AIxvZos= Received: by alsa1.perex.cz (Postfix, from userid 50401) id 83CB8F805D3; Tue, 27 Aug 2024 14:03:15 +0200 (CEST) Received: from mailman-core.alsa-project.org (mailman-core.alsa-project.org [10.254.200.10]) by alsa1.perex.cz (Postfix) with ESMTP id 5966FF805E5; Tue, 27 Aug 2024 14:03:14 +0200 (CEST) Received: by alsa1.perex.cz (Postfix, from userid 50401) id 67379F80518; Mon, 26 Aug 2024 10:58:04 +0200 (CEST) Received: from szxga07-in.huawei.com (szxga07-in.huawei.com [45.249.212.35]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by alsa1.perex.cz (Postfix) with ESMTPS id 1F6A2F80494 for ; Mon, 26 Aug 2024 10:57:41 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa1.perex.cz 1F6A2F80494 Received: from mail.maildlp.com (unknown [172.19.162.112]) by szxga07-in.huawei.com (SkyGuard) with ESMTP id 4Wsl1L2MjWz1S8wj; Mon, 26 Aug 2024 16:57:26 +0800 (CST) Received: from dggpemm500020.china.huawei.com (unknown [7.185.36.49]) by mail.maildlp.com (Postfix) with ESMTPS id 8AF30140120; Mon, 26 Aug 2024 16:57:35 +0800 (CST) Received: from huawei.com (10.67.174.77) by dggpemm500020.china.huawei.com (7.185.36.49) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.1.2507.39; Mon, 26 Aug 2024 16:57:35 +0800 From: Liao Chen To: , , CC: , , , , , , , , , , , , , , Subject: [PATCH -next 1/4] ASoC: intel: fix module autoloading Date: Mon, 26 Aug 2024 08:49:21 +0000 Message-ID: <20240826084924.368387-2-liaochen4@huawei.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240826084924.368387-1-liaochen4@huawei.com> References: <20240826084924.368387-1-liaochen4@huawei.com> MIME-Version: 1.0 X-Originating-IP: [10.67.174.77] X-ClientProxiedBy: dggems701-chm.china.huawei.com (10.3.19.178) To dggpemm500020.china.huawei.com (7.185.36.49) X-MailFrom: liaochen4@huawei.com X-Mailman-Rule-Hits: nonmember-moderation X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-alsa-devel.alsa-project.org-0; header-match-alsa-devel.alsa-project.org-1 Message-ID-Hash: GIOYIFYQ2QMIE6RZQVZBKTZG4UYMQXU2 X-Message-ID-Hash: GIOYIFYQ2QMIE6RZQVZBKTZG4UYMQXU2 X-Mailman-Approved-At: Tue, 27 Aug 2024 12:02:46 +0000 X-Mailman-Version: 3.3.9 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" Archived-At: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Add MODULE_DEVICE_TABLE(), so modules could be properly autoloaded based on the alias from of_device_id table. Signed-off-by: Liao Chen --- sound/soc/intel/keembay/kmb_platform.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/soc/intel/keembay/kmb_platform.c b/sound/soc/intel/keembay/kmb_platform.c index 37ea2e1d2e92..aa5de167e790 100644 --- a/sound/soc/intel/keembay/kmb_platform.c +++ b/sound/soc/intel/keembay/kmb_platform.c @@ -814,6 +814,7 @@ static const struct of_device_id kmb_plat_of_match[] = { { .compatible = "intel,keembay-tdm", .data = &intel_kmb_tdm_dai}, {} }; +MODULE_DEVICE_TABLE(of, kmb_plat_of_match); static int kmb_plat_dai_probe(struct platform_device *pdev) { From patchwork Mon Aug 26 08:49:22 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Liao Chen X-Patchwork-Id: 823168 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 alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 5667AC54734 for ; Tue, 27 Aug 2024 12:04:35 +0000 (UTC) Received: from alsa1.perex.cz (alsa1.perex.cz [207.180.221.201]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by alsa0.perex.cz (Postfix) with ESMTPS id ABE7B829; Tue, 27 Aug 2024 14:04:23 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa0.perex.cz ABE7B829 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=alsa-project.org; s=default; t=1724760273; bh=xIeOdHl759IGucjrXycsnNIQn5ujjKHlbnv6vH7Q4ss=; h=From:To:CC:Subject:Date:In-Reply-To:References:List-Id: List-Archive:List-Help:List-Owner:List-Post:List-Subscribe: List-Unsubscribe:From; b=vclj3gjOPCsnejPXSht8OvKsz1Ssx5CQNRYYy02iXISEnVRFLHBHGtmiWQBrcH5b0 nFFrvf0UrxuTKSW3dUr+OGrrW6V2HR/u5Qr8f1iiwo3f2h6OB5JUit2zC0qMLVWGW0 8S6Xn7qIg2b22ouO53kq2iuaM4+ySIsIjnJTbIMM= Received: by alsa1.perex.cz (Postfix, from userid 50401) id 51325F8060D; Tue, 27 Aug 2024 14:03:29 +0200 (CEST) Received: from mailman-core.alsa-project.org (mailman-core.alsa-project.org [10.254.200.10]) by alsa1.perex.cz (Postfix) with ESMTP id 38115F8061D; Tue, 27 Aug 2024 14:03:29 +0200 (CEST) Received: by alsa1.perex.cz (Postfix, from userid 50401) id 09E22F80494; Mon, 26 Aug 2024 10:58:06 +0200 (CEST) Received: from szxga02-in.huawei.com (szxga02-in.huawei.com [45.249.212.188]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by alsa1.perex.cz (Postfix) with ESMTPS id 111A9F80423 for ; Mon, 26 Aug 2024 10:57:44 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa1.perex.cz 111A9F80423 Received: from mail.maildlp.com (unknown [172.19.88.105]) by szxga02-in.huawei.com (SkyGuard) with ESMTP id 4Wskzc6QSTzpTYc; Mon, 26 Aug 2024 16:55:56 +0800 (CST) Received: from dggpemm500020.china.huawei.com (unknown [7.185.36.49]) by mail.maildlp.com (Postfix) with ESMTPS id BBF4A14037E; Mon, 26 Aug 2024 16:57:35 +0800 (CST) Received: from huawei.com (10.67.174.77) by dggpemm500020.china.huawei.com (7.185.36.49) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.1.2507.39; Mon, 26 Aug 2024 16:57:35 +0800 From: Liao Chen To: , , CC: , , , , , , , , , , , , , , Subject: [PATCH -next 2/4] ASoC: google: fix module autoloading Date: Mon, 26 Aug 2024 08:49:22 +0000 Message-ID: <20240826084924.368387-3-liaochen4@huawei.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240826084924.368387-1-liaochen4@huawei.com> References: <20240826084924.368387-1-liaochen4@huawei.com> MIME-Version: 1.0 X-Originating-IP: [10.67.174.77] X-ClientProxiedBy: dggems701-chm.china.huawei.com (10.3.19.178) To dggpemm500020.china.huawei.com (7.185.36.49) X-MailFrom: liaochen4@huawei.com X-Mailman-Rule-Hits: nonmember-moderation X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-alsa-devel.alsa-project.org-0; header-match-alsa-devel.alsa-project.org-1 Message-ID-Hash: O3EVGX75G6F2J52UWEGISAOZAQGYCO5M X-Message-ID-Hash: O3EVGX75G6F2J52UWEGISAOZAQGYCO5M X-Mailman-Approved-At: Tue, 27 Aug 2024 12:02:47 +0000 X-Mailman-Version: 3.3.9 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" Archived-At: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Add MODULE_DEVICE_TABLE(), so modules could be properly autoloaded based on the alias from of_device_id table. Signed-off-by: Liao Chen --- sound/soc/google/chv3-i2s.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/soc/google/chv3-i2s.c b/sound/soc/google/chv3-i2s.c index 08e558f24af8..0ff24653d49f 100644 --- a/sound/soc/google/chv3-i2s.c +++ b/sound/soc/google/chv3-i2s.c @@ -322,6 +322,7 @@ static const struct of_device_id chv3_i2s_of_match[] = { { .compatible = "google,chv3-i2s" }, {}, }; +MODULE_DEVICE_TABLE(of, chv3_i2s_of_match); static struct platform_driver chv3_i2s_driver = { .probe = chv3_i2s_probe, From patchwork Mon Aug 26 08:49:23 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Liao Chen X-Patchwork-Id: 822690 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 alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 6C762C54735 for ; Tue, 27 Aug 2024 12:03:44 +0000 (UTC) Received: from alsa1.perex.cz (alsa1.perex.cz [207.180.221.201]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by alsa0.perex.cz (Postfix) with ESMTPS id 34A0A832; Tue, 27 Aug 2024 14:03:32 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa0.perex.cz 34A0A832 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=alsa-project.org; s=default; t=1724760222; bh=pZGOERsvhHa8WHbFHYy/SccQjvulZF6Isev0LBjxEqU=; h=From:To:CC:Subject:Date:In-Reply-To:References:List-Id: List-Archive:List-Help:List-Owner:List-Post:List-Subscribe: List-Unsubscribe:From; b=fpSSQoKvhlltUDsrEVj5qvozkuwvPyNBjBFV2aSsc00L44q7qRuCoxnP0YZjf01xp yJdA1BfNTd9xnHWkfrsWrVboROM+iDVxbE7bYuQcTTiQZh15v8EsUTaf6OUblT0F3G KxSokysYybc/CAe6PH/IDlqYfUni98aj+jtPTCF0= Received: by alsa1.perex.cz (Postfix, from userid 50401) id F30F0F805AE; Tue, 27 Aug 2024 14:03:11 +0200 (CEST) Received: from mailman-core.alsa-project.org (mailman-core.alsa-project.org [10.254.200.10]) by alsa1.perex.cz (Postfix) with ESMTP id 619BBF805AF; Tue, 27 Aug 2024 14:03:10 +0200 (CEST) Received: by alsa1.perex.cz (Postfix, from userid 50401) id A2B5BF80568; Mon, 26 Aug 2024 10:57:52 +0200 (CEST) Received: from szxga01-in.huawei.com (szxga01-in.huawei.com [45.249.212.187]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by alsa1.perex.cz (Postfix) with ESMTPS id 220F8F8025E for ; Mon, 26 Aug 2024 10:57:40 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa1.perex.cz 220F8F8025E Received: from mail.maildlp.com (unknown [172.19.88.105]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4Wsl0f1txGzpVjH; Mon, 26 Aug 2024 16:56:50 +0800 (CST) Received: from dggpemm500020.china.huawei.com (unknown [7.185.36.49]) by mail.maildlp.com (Postfix) with ESMTPS id 01D5D14037E; Mon, 26 Aug 2024 16:57:36 +0800 (CST) Received: from huawei.com (10.67.174.77) by dggpemm500020.china.huawei.com (7.185.36.49) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.1.2507.39; Mon, 26 Aug 2024 16:57:35 +0800 From: Liao Chen To: , , CC: , , , , , , , , , , , , , , Subject: [PATCH -next 3/4] ASoC: tda7419: fix module autoloading Date: Mon, 26 Aug 2024 08:49:23 +0000 Message-ID: <20240826084924.368387-4-liaochen4@huawei.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240826084924.368387-1-liaochen4@huawei.com> References: <20240826084924.368387-1-liaochen4@huawei.com> MIME-Version: 1.0 X-Originating-IP: [10.67.174.77] X-ClientProxiedBy: dggems701-chm.china.huawei.com (10.3.19.178) To dggpemm500020.china.huawei.com (7.185.36.49) X-MailFrom: liaochen4@huawei.com X-Mailman-Rule-Hits: nonmember-moderation X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-alsa-devel.alsa-project.org-0; header-match-alsa-devel.alsa-project.org-1 Message-ID-Hash: DFFYBQ3IJYURO2CIFYOPR2LKOFVOKRHX X-Message-ID-Hash: DFFYBQ3IJYURO2CIFYOPR2LKOFVOKRHX X-Mailman-Approved-At: Tue, 27 Aug 2024 12:02:45 +0000 X-Mailman-Version: 3.3.9 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" Archived-At: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Add MODULE_DEVICE_TABLE(), so modules could be properly autoloaded based on the alias from of_device_id table. Signed-off-by: Liao Chen --- sound/soc/codecs/tda7419.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/soc/codecs/tda7419.c b/sound/soc/codecs/tda7419.c index 386b99c8023b..7d6fcba9986e 100644 --- a/sound/soc/codecs/tda7419.c +++ b/sound/soc/codecs/tda7419.c @@ -623,6 +623,7 @@ static const struct of_device_id tda7419_of_match[] = { { .compatible = "st,tda7419" }, { }, }; +MODULE_DEVICE_TABLE(of, tda7419_of_match); static struct i2c_driver tda7419_driver = { .driver = { From patchwork Mon Aug 26 08:49:24 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Liao Chen X-Patchwork-Id: 822689 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 alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 8D186C54735 for ; Tue, 27 Aug 2024 12:04:17 +0000 (UTC) Received: from alsa1.perex.cz (alsa1.perex.cz [207.180.221.201]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by alsa0.perex.cz (Postfix) with ESMTPS id A9C91E7D; Tue, 27 Aug 2024 14:04:05 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa0.perex.cz A9C91E7D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=alsa-project.org; s=default; t=1724760255; bh=z1HFNNdFqZGfGNDw6EeA7y8hXdBijGmmkHWO4/tSfe8=; h=From:To:CC:Subject:Date:In-Reply-To:References:List-Id: List-Archive:List-Help:List-Owner:List-Post:List-Subscribe: List-Unsubscribe:From; b=nRSjmNbxlz09jTUCwoRlaS/i0GhUjFoSYaYMoI3f9mzDR8mFGMBtP8R6gcU9WnP0O YveUR9C69R1LNQg8DrI/WtpYtfmOsGct+HT+TPKjircumaEv36uEoprfIb15ZInWB+ outPhSIoJPgRzlfYZXJRn22VqHceb2ovU5rkw7fY= Received: by alsa1.perex.cz (Postfix, from userid 50401) id E3502F805FE; Tue, 27 Aug 2024 14:03:23 +0200 (CEST) Received: from mailman-core.alsa-project.org (mailman-core.alsa-project.org [10.254.200.10]) by alsa1.perex.cz (Postfix) with ESMTP id 36E77F805FA; Tue, 27 Aug 2024 14:03:22 +0200 (CEST) Received: by alsa1.perex.cz (Postfix, from userid 50401) id D89B8F80528; Mon, 26 Aug 2024 10:57:59 +0200 (CEST) Received: from szxga07-in.huawei.com (szxga07-in.huawei.com [45.249.212.35]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by alsa1.perex.cz (Postfix) with ESMTPS id E2B7EF80301 for ; Mon, 26 Aug 2024 10:57:42 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa1.perex.cz E2B7EF80301 Received: from mail.maildlp.com (unknown [172.19.162.112]) by szxga07-in.huawei.com (SkyGuard) with ESMTP id 4Wsl1L6bxLz1S8ww; Mon, 26 Aug 2024 16:57:26 +0800 (CST) Received: from dggpemm500020.china.huawei.com (unknown [7.185.36.49]) by mail.maildlp.com (Postfix) with ESMTPS id 296BC140120; Mon, 26 Aug 2024 16:57:36 +0800 (CST) Received: from huawei.com (10.67.174.77) by dggpemm500020.china.huawei.com (7.185.36.49) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.1.2507.39; Mon, 26 Aug 2024 16:57:35 +0800 From: Liao Chen To: , , CC: , , , , , , , , , , , , , , Subject: [PATCH -next 4/4] ASoC: fix module autoloading Date: Mon, 26 Aug 2024 08:49:24 +0000 Message-ID: <20240826084924.368387-5-liaochen4@huawei.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240826084924.368387-1-liaochen4@huawei.com> References: <20240826084924.368387-1-liaochen4@huawei.com> MIME-Version: 1.0 X-Originating-IP: [10.67.174.77] X-ClientProxiedBy: dggems701-chm.china.huawei.com (10.3.19.178) To dggpemm500020.china.huawei.com (7.185.36.49) X-MailFrom: liaochen4@huawei.com X-Mailman-Rule-Hits: nonmember-moderation X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-alsa-devel.alsa-project.org-0; header-match-alsa-devel.alsa-project.org-1 Message-ID-Hash: WNI2SOYFTU3GHSLUQGH6KDU57K2XHGCO X-Message-ID-Hash: WNI2SOYFTU3GHSLUQGH6KDU57K2XHGCO X-Mailman-Approved-At: Tue, 27 Aug 2024 12:02:46 +0000 X-Mailman-Version: 3.3.9 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" Archived-At: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Add MODULE_DEVICE_TABLE(), so modules could be properly autoloaded based on the alias from of_device_id table. Signed-off-by: Liao Chen --- sound/soc/codecs/chv3-codec.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/soc/codecs/chv3-codec.c b/sound/soc/codecs/chv3-codec.c index ab99effa6874..40020500b1fe 100644 --- a/sound/soc/codecs/chv3-codec.c +++ b/sound/soc/codecs/chv3-codec.c @@ -26,6 +26,7 @@ static const struct of_device_id chv3_codec_of_match[] = { { .compatible = "google,chv3-codec", }, { } }; +MODULE_DEVICE_TABLE(of, chv3_codec_of_match); static struct platform_driver chv3_codec_platform_driver = { .driver = {