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/ixgb | |
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/ixgb')
-rw-r--r-- | sys/dev/ixgb/if_ixgb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ixgb/if_ixgb.c b/sys/dev/ixgb/if_ixgb.c index c1d6858..1fb3544 100644 --- a/sys/dev/ixgb/if_ixgb.c +++ b/sys/dev/ixgb/if_ixgb.c @@ -167,10 +167,10 @@ static driver_t ixgb_driver = { }; static devclass_t ixgb_devclass; -DRIVER_MODULE(if_ixgb, pci, ixgb_driver, ixgb_devclass, 0, 0); +DRIVER_MODULE(ixgb, pci, ixgb_driver, ixgb_devclass, 0, 0); -MODULE_DEPEND(if_ixgb, pci, 1, 1, 1); -MODULE_DEPEND(if_ixgb, ether, 1, 1, 1); +MODULE_DEPEND(ixgb, pci, 1, 1, 1); +MODULE_DEPEND(ixgb, ether, 1, 1, 1); /* some defines for controlling descriptor fetches in h/w */ #define RXDCTL_PTHRESH_DEFAULT 128 /* chip considers prefech below this */ |