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: 13777432 Received: from szxga01-in.huawei.com (szxga01-in.huawei.com [45.249.212.187]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 7879C13D63E; Mon, 26 Aug 2024 08:57:38 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.249.212.187 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724662660; cv=none; b=POMK3/btQBPPvVXE4zo9qprCposqbfdwlw7vgPqqt/2h+fu52yjm4AFY5UKgW/fMUEIrH2xdsHxxA1P3cc25j4mcWHH3s7tCLsSRD+iKe7ioK6zYSsasPKNQhqk+3vrXdEtW/0rgbiGZhhnaxkYfMPbNl8EtsX/Tee6GKHftcGA= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724662660; c=relaxed/simple; bh=pZGOERsvhHa8WHbFHYy/SccQjvulZF6Isev0LBjxEqU=; h=From:To:CC:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=t1Ndqe5MblfI8XaM0//4hbLRL8bobPUFQxV9jeqiri6ywXM+RyGc8eEOXzck+qXUvLSgr/EXJAkRsGKAdubdcSadx1wVqJ5+kmORdEpbWYEKf0y14RHWDVz/Lq54k442OhudaRDLVHDPrhmHOgyJEqzsr+tm+wG0+J5KO6bhfsM= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com; spf=pass smtp.mailfrom=huawei.com; arc=none smtp.client-ip=45.249.212.187 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=huawei.com 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> Precedence: bulk X-Mailing-List: linux-sound@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-ClientProxiedBy: dggems701-chm.china.huawei.com (10.3.19.178) To dggpemm500020.china.huawei.com (7.185.36.49) 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 = {