diff options
author | Sedat Dilek <sedat.dilek@gmail.com> | 2010-12-07 22:35:50 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-12-09 08:53:42 -0500 |
commit | b7ee1d01c5ff3bf2e51c8565ea00823cdbc2a9f3 (patch) | |
tree | df624f824bfd2ca052e12aa2ff91aa13ddafe97a | |
parent | 393934c6b5c8d00f9d1ae20670d4a770f07a418a (diff) | |
download | linux-3.10-b7ee1d01c5ff3bf2e51c8565ea00823cdbc2a9f3.tar.gz linux-3.10-b7ee1d01c5ff3bf2e51c8565ea00823cdbc2a9f3.tar.bz2 linux-3.10-b7ee1d01c5ff3bf2e51c8565ea00823cdbc2a9f3.zip |
ath5k: Fix modinfo does not list alias -> pci-id lines
The AHB bus support patchset moved the table "Known PCI ids" from base.c
to pci.c - unfortunately, MODULE_DEVICE_TABLE() was not transferred.
With this fix 'modinfo ath5k' lists the alias -> pci-id lines, again.
The issue was introduced by:
commit e5b046d86fac609f636d127a38de94a175c7e83b
"ath5k: Move PCI bus functions to separate file."
Signed-off-by: Sedat Dilek <sedat.dilek@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/ath/ath5k/pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath5k/pci.c b/drivers/net/wireless/ath/ath5k/pci.c index 39f033128c5..7f8c5b0e9d2 100644 --- a/drivers/net/wireless/ath/ath5k/pci.c +++ b/drivers/net/wireless/ath/ath5k/pci.c @@ -45,6 +45,7 @@ static DEFINE_PCI_DEVICE_TABLE(ath5k_pci_id_table) = { { PCI_VDEVICE(ATHEROS, 0x001d) }, /* 2417 Nala */ { 0 } }; +MODULE_DEVICE_TABLE(pci, ath5k_pci_id_table); /* return bus cachesize in 4B word units */ static void ath5k_pci_read_cachesize(struct ath_common *common, int *csz) |