diff options
author | imp <imp@FreeBSD.org> | 2009-05-15 17:02:11 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2009-05-15 17:02:11 +0000 |
commit | 1d666bd7febac3de0620b3d4ca190c02c0d276ba (patch) | |
tree | 7a7096fd2774ba7ce3a1ff341538ebf07fff0980 /sys/dev/ath/if_ath_pci.c | |
parent | 69c87c65448859278bf430dc2d66b1266a5cead3 (diff) | |
download | FreeBSD-src-1d666bd7febac3de0620b3d4ca190c02c0d276ba.zip FreeBSD-src-1d666bd7febac3de0620b3d4ca190c02c0d276ba.tar.gz |
The module name convention is foo, not if_foo.
Diffstat (limited to 'sys/dev/ath/if_ath_pci.c')
-rw-r--r-- | sys/dev/ath/if_ath_pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ath/if_ath_pci.c b/sys/dev/ath/if_ath_pci.c index 8b3e52e..44d398d 100644 --- a/sys/dev/ath/if_ath_pci.c +++ b/sys/dev/ath/if_ath_pci.c @@ -250,6 +250,6 @@ static driver_t ath_pci_driver = { sizeof (struct ath_pci_softc) }; static devclass_t ath_devclass; -DRIVER_MODULE(if_ath, pci, ath_pci_driver, ath_devclass, 0, 0); -MODULE_VERSION(if_ath, 1); -MODULE_DEPEND(if_ath, wlan, 1, 1, 1); /* 802.11 media layer */ +DRIVER_MODULE(ath, pci, ath_pci_driver, ath_devclass, 0, 0); +MODULE_VERSION(ath, 1); +MODULE_DEPEND(ath, wlan, 1, 1, 1); /* 802.11 media layer */ |