diff options
author | obrien <obrien@FreeBSD.org> | 1999-09-20 07:50:10 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1999-09-20 07:50:10 +0000 |
commit | 2fd30c0ea539f6ec55659cb2fbb9f21c5d07a797 (patch) | |
tree | 7b6c7bf810e7464b62c6be6060712be1f76b7067 /sys/dev/vr | |
parent | 463e41d5f8719df872df75b8d87df6dce81535e6 (diff) | |
download | FreeBSD-src-2fd30c0ea539f6ec55659cb2fbb9f21c5d07a797.zip FreeBSD-src-2fd30c0ea539f6ec55659cb2fbb9f21c5d07a797.tar.gz |
Goofed and didn't change the second DRIVER_MODULE() linking these with
the miibus.
Noticed by: wpaul
Diffstat (limited to 'sys/dev/vr')
-rw-r--r-- | sys/dev/vr/if_vr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/vr/if_vr.c b/sys/dev/vr/if_vr.c index af3ae7e..23f9ca9 100644 --- a/sys/dev/vr/if_vr.c +++ b/sys/dev/vr/if_vr.c @@ -203,7 +203,7 @@ static driver_t vr_driver = { static devclass_t vr_devclass; DRIVER_MODULE(if_vr, pci, vr_driver, vr_devclass, 0, 0); -DRIVER_MODULE(miibus, vr, miibus_driver, miibus_devclass, 0, 0); +DRIVER_MODULE(miibus, if_vr, miibus_driver, miibus_devclass, 0, 0); #define VR_SETBIT(sc, reg, x) \ CSR_WRITE_1(sc, reg, \ |