aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ed/if_ed_pci.c
diff options
context:
space:
mode:
authorMike Smith <msmith@FreeBSD.org>2000-10-15 20:23:27 +0000
committerMike Smith <msmith@FreeBSD.org>2000-10-15 20:23:27 +0000
commit1b97a6c6a918321586737026b6f606cf95abce4c (patch)
tree6dbd92bc55ddf3e72e1d35c3aec404819fceb141 /sys/dev/ed/if_ed_pci.c
parent9c8ec4f794f1843941577487e4399a6b2a0f3b55 (diff)
downloadsrc-1b97a6c6a918321586737026b6f606cf95abce4c.tar.gz
src-1b97a6c6a918321586737026b6f606cf95abce4c.zip
Network modules are all "if_foo" not "foo". Avoid the confusing spew that
ensues when ifconfig tries to load if_ed.ko when it's already in the kernel.
Notes
Notes: svn path=/head/; revision=67172
Diffstat (limited to 'sys/dev/ed/if_ed_pci.c')
-rw-r--r--sys/dev/ed/if_ed_pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ed/if_ed_pci.c b/sys/dev/ed/if_ed_pci.c
index 34cd41d2f597..b083d9d0bace 100644
--- a/sys/dev/ed/if_ed_pci.c
+++ b/sys/dev/ed/if_ed_pci.c
@@ -122,4 +122,4 @@ static driver_t ed_pci_driver = {
static devclass_t ed_devclass;
-DRIVER_MODULE(ed, pci, ed_pci_driver, ed_devclass, 0, 0);
+DRIVER_MODULE(if_ed, pci, ed_pci_driver, ed_devclass, 0, 0);