瀏覽代碼

vme: Fix module autoload

These drivers have a PCI device ID table but the PCI module
alias information is not created so module autoloading won't work.

Signed-off-by: Alessio Igor Bogani <alessio.bogani@elettra.eu>
Acked-by: Martyn Welch <martyn@welchs.me.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alessio Igor Bogani 9 年之前
父節點
當前提交
553ebb8e40
共有 2 個文件被更改,包括 4 次插入0 次删除
  1. 2 0
      drivers/vme/bridges/vme_ca91cx42.c
  2. 2 0
      drivers/vme/bridges/vme_tsi148.c

+ 2 - 0
drivers/vme/bridges/vme_ca91cx42.c

@@ -47,6 +47,8 @@ static const struct pci_device_id ca91cx42_ids[] = {
 	{ },
 };
 
+MODULE_DEVICE_TABLE(pci, ca91cx42_ids);
+
 static struct pci_driver ca91cx42_driver = {
 	.name = driver_name,
 	.id_table = ca91cx42_ids,

+ 2 - 0
drivers/vme/bridges/vme_tsi148.c

@@ -50,6 +50,8 @@ static const struct pci_device_id tsi148_ids[] = {
 	{ },
 };
 
+MODULE_DEVICE_TABLE(pci, tsi148_ids);
+
 static struct pci_driver tsi148_driver = {
 	.name = driver_name,
 	.id_table = tsi148_ids,