diff options
author | wpaul <wpaul@FreeBSD.org> | 1999-09-20 08:14:39 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 1999-09-20 08:14:39 +0000 |
commit | 73a8dd66e74a351f3723fc0e47ac46908073a785 (patch) | |
tree | 800a7866337e811ee88bfdd74ecaf740366b618c /sys/dev/vr | |
parent | 4d16916f800d4c5ee37fb3c93ca6981ad9b33eb3 (diff) | |
download | FreeBSD-src-73a8dd66e74a351f3723fc0e47ac46908073a785.zip FreeBSD-src-73a8dd66e74a351f3723fc0e47ac46908073a785.tar.gz |
Fix the strings in the driver_t structs so that they match the new names
in the DRIVER_MODULES() declarations. *sigh*
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 23f9ca9..a4a22d8 100644 --- a/sys/dev/vr/if_vr.c +++ b/sys/dev/vr/if_vr.c @@ -195,7 +195,7 @@ static device_method_t vr_methods[] = { }; static driver_t vr_driver = { - "vr", + "if_vr", vr_methods, sizeof(struct vr_softc) }; |