diff options
author | Yuntao Liu <liuyuntao12@huawei.com> | 2024-08-15 12:13:12 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2024-08-18 10:47:30 +0300 |
commit | 48f1434a4632c7da1a6a94e159512ebddbe13392 (patch) | |
tree | 0bdf6906f031568687e65325da8e488d1d6bebe1 | |
parent | ff6615efa87482600af14c1a1c4b5da4e32f9a82 (diff) | |
download | linux-48f1434a4632c7da1a6a94e159512ebddbe13392.tar.xz |
ALSA: hda: cs35l41: fix module autoloading
Add MODULE_DEVICE_TABLE(), so modules could be properly autoloaded
based on the alias from spi_device_id table.
Fixes: 7b2f3eb492da ("ALSA: hda: cs35l41: Add support for CS35L41 in HDA systems")
Signed-off-by: Yuntao Liu <liuyuntao12@huawei.com>
Link: https://patch.msgid.link/20240815091312.757139-1-liuyuntao12@huawei.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/pci/hda/cs35l41_hda_spi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/pci/hda/cs35l41_hda_spi.c b/sound/pci/hda/cs35l41_hda_spi.c index b76c0dfd5fef..f8c356ad0d34 100644 --- a/sound/pci/hda/cs35l41_hda_spi.c +++ b/sound/pci/hda/cs35l41_hda_spi.c @@ -38,6 +38,7 @@ static const struct spi_device_id cs35l41_hda_spi_id[] = { { "cs35l41-hda", 0 }, {} }; +MODULE_DEVICE_TABLE(spi, cs35l41_hda_spi_id); static const struct acpi_device_id cs35l41_acpi_hda_match[] = { { "CSC3551", 0 }, |