diff options
author | imp <imp@FreeBSD.org> | 2005-10-22 05:06:55 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2005-10-22 05:06:55 +0000 |
commit | 8be657140580c20b53cb6f2f5b33f9a534bdeb00 (patch) | |
tree | fa358f3a51a68368940931be78defd11e23dbfcb /sys/dev/bfe | |
parent | f1e19070aa8b1e895a618964ca4ef57b98c168f5 (diff) | |
download | FreeBSD-src-8be657140580c20b53cb6f2f5b33f9a534bdeb00.zip FreeBSD-src-8be657140580c20b53cb6f2f5b33f9a534bdeb00.tar.gz |
Replace FreeBSD 3.x syntax (controller miibus0) with 4.x syntax
(device miibus) in time for 7.0 :-)
Diffstat (limited to 'sys/dev/bfe')
-rw-r--r-- | sys/dev/bfe/if_bfe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/bfe/if_bfe.c b/sys/dev/bfe/if_bfe.c index 756bba0..8612a88 100644 --- a/sys/dev/bfe/if_bfe.c +++ b/sys/dev/bfe/if_bfe.c @@ -72,7 +72,7 @@ MODULE_DEPEND(bfe, pci, 1, 1, 1); MODULE_DEPEND(bfe, ether, 1, 1, 1); MODULE_DEPEND(bfe, miibus, 1, 1, 1); -/* "controller miibus0" required. See GENERIC if you get errors here. */ +/* "device miibus" required. See GENERIC if you get errors here. */ #include "miibus_if.h" #define BFE_DEVDESC_MAX 64 /* Maximum device description length */ |