diff options
| author | Warner Losh <imp@FreeBSD.org> | 2009-05-15 17:02:11 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2009-05-15 17:02:11 +0000 |
| commit | b8f5836a3c1b98b09ea5a101147530d3855cb602 (patch) | |
| tree | 7a7096fd2774ba7ce3a1ff341538ebf07fff0980 /sys/dev/ixgb | |
| parent | 16dcc9ce7716276be635a083dc39385890d29a8d (diff) | |
Notes
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 c1d68582479a..1fb35445552a 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 */ |
