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: 13777431 Received: from szxga02-in.huawei.com (szxga02-in.huawei.com [45.249.212.188]) (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 91E227710E; Mon, 26 Aug 2024 08:57:38 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.249.212.188 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724662660; cv=none; b=fK25aTlSQX/AdcNJ3sUqhEU+/sV4zyMSofmLfSMsPY+6jLCztK7UvcTXRgNsV2io3gHhAlgSDD/vzROq8Hzeqzinzzfq3BiCBeF9MaL2wV6PyOzuK2Bm27wXsAujm6EC6AkKxUsImlqJHwTmOtOkxHkWmbTf9hm+n3omA/SN3zA= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724662660; c=relaxed/simple; bh=xIeOdHl759IGucjrXycsnNIQn5ujjKHlbnv6vH7Q4ss=; h=From:To:CC:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=G2uGkbSpRbVttLmtPv2gJEADDRYKZ4zYI1vfnuIn2SHinLa197QII50C6rHWwu4p7S81NOnXR+lt3nl3EFg7fOQv2658nbX+KdWlPxQwVpjg4SKdxTNOcCk6wtbLQS9lFlip3sH5OaE1mZUPagqswjFAGnSeGp/CzYHNQpCfloI= 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.188 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 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> 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/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,