From 73a8dd66e74a351f3723fc0e47ac46908073a785 Mon Sep 17 00:00:00 2001 From: wpaul Date: Mon, 20 Sep 1999 08:14:39 +0000 Subject: Fix the strings in the driver_t structs so that they match the new names in the DRIVER_MODULES() declarations. *sigh* --- sys/dev/sf/if_sf.c | 2 +- sys/dev/sk/if_sk.c | 2 +- sys/dev/ti/if_ti.c | 2 +- sys/dev/vr/if_vr.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/sf/if_sf.c b/sys/dev/sf/if_sf.c index 9d67f91..0e9005a 100644 --- a/sys/dev/sf/if_sf.c +++ b/sys/dev/sf/if_sf.c @@ -201,7 +201,7 @@ static device_method_t sf_methods[] = { }; static driver_t sf_driver = { - "sf", + "if_sf", sf_methods, sizeof(struct sf_softc), }; diff --git a/sys/dev/sk/if_sk.c b/sys/dev/sk/if_sk.c index 04c1bf7..9e06a35 100644 --- a/sys/dev/sk/if_sk.c +++ b/sys/dev/sk/if_sk.c @@ -174,7 +174,7 @@ static device_method_t sk_methods[] = { }; static driver_t sk_driver = { - "skc", + "if_skc", sk_methods, sizeof(struct sk_softc) }; diff --git a/sys/dev/ti/if_ti.c b/sys/dev/ti/if_ti.c index 947f6c1..22d3420 100644 --- a/sys/dev/ti/if_ti.c +++ b/sys/dev/ti/if_ti.c @@ -217,7 +217,7 @@ static device_method_t ti_methods[] = { }; static driver_t ti_driver = { - "ti", + "if_ti", ti_methods, sizeof(struct ti_softc) }; 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) }; -- cgit v1.1