aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorLiao Chen <liaochen4@huawei.com>2024-08-26 09:18:56 +0000
committerJakub Kicinski <kuba@kernel.org>2024-08-27 14:26:04 -0700
commit2e25147a6560b684917d7f7142422c9901badfdd (patch)
treeabb0909bdd9949244507ff456597ed9df9730836
parentnet: txgbe: use pci_dev_id() helper (diff)
downloadwireguard-linux-2e25147a6560b684917d7f7142422c9901badfdd.tar.xz
wireguard-linux-2e25147a6560b684917d7f7142422c9901badfdd.zip
net: dm9051: fix module autoloading
Add MODULE_DEVICE_TABLE(), so modules could be properly autoloaded based on the alias from of_device_id table. Signed-off-by: Liao Chen <liaochen4@huawei.com> Link: https://patch.msgid.link/20240826091858.369910-2-liaochen4@huawei.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
-rw-r--r--drivers/net/ethernet/davicom/dm9051.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/davicom/dm9051.c b/drivers/net/ethernet/davicom/dm9051.c
index bcfe52c11804..59ea48d4c9de 100644
--- a/drivers/net/ethernet/davicom/dm9051.c
+++ b/drivers/net/ethernet/davicom/dm9051.c
@@ -1235,6 +1235,7 @@ static const struct of_device_id dm9051_match_table[] = {
{ .compatible = "davicom,dm9051" },
{}
};
+MODULE_DEVICE_TABLE(of, dm9051_match_table);
static const struct spi_device_id dm9051_id_table[] = {
{ "dm9051", 0 },