aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorBill Paul <wpaul@FreeBSD.org>1999-09-20 08:14:39 +0000
committerBill Paul <wpaul@FreeBSD.org>1999-09-20 08:14:39 +0000
commitb95a9362a02556121c462670fe0fc79ea6b15d2e (patch)
treed665beba91ca0ea31b69456d53ec1eb606ce7c89 /sys/dev
parentf3722ef60953dd83ee81e15a3c6c3dc29143afd7 (diff)
Notes
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/sf/if_sf.c2
-rw-r--r--sys/dev/sk/if_sk.c2
-rw-r--r--sys/dev/ti/if_ti.c2
-rw-r--r--sys/dev/vr/if_vr.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/sf/if_sf.c b/sys/dev/sf/if_sf.c
index 9d67f91357a3a..0e9005a806574 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 04c1bf72fe092..9e06a35f1851d 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 947f6c1c26ee2..22d342068e34b 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 23f9ca90e8a02..a4a22d83a2506 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)
};