diff --git a/sys/dev/sf/if_sf.c b/sys/dev/sf/if_sf.c index 9d67f91357a3..0e9005a80657 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 04c1bf72fe09..9e06a35f1851 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 947f6c1c26ee..22d342068e34 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 23f9ca90e8a0..a4a22d83a250 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) }; diff --git a/sys/pci/if_ax.c b/sys/pci/if_ax.c index 0cb2daf788a3..6b26641e6a5c 100644 --- a/sys/pci/if_ax.c +++ b/sys/pci/if_ax.c @@ -190,7 +190,7 @@ static device_method_t ax_methods[] = { }; static driver_t ax_driver = { - "ax", + "if_ax", ax_methods, sizeof(struct ax_softc) }; diff --git a/sys/pci/if_dm.c b/sys/pci/if_dm.c index 356eafd5f94e..157663a25dfe 100644 --- a/sys/pci/if_dm.c +++ b/sys/pci/if_dm.c @@ -183,7 +183,7 @@ static device_method_t dm_methods[] = { }; static driver_t dm_driver = { - "dm", + "if_dm", dm_methods, sizeof(struct dm_softc) }; diff --git a/sys/pci/if_mx.c b/sys/pci/if_mx.c index 739ff3bd1d43..b27f6ce2752b 100644 --- a/sys/pci/if_mx.c +++ b/sys/pci/if_mx.c @@ -208,7 +208,7 @@ static device_method_t mx_methods[] = { }; static driver_t mx_driver = { - "mx", + "if_mx", mx_methods, sizeof(struct mx_softc) }; diff --git a/sys/pci/if_pn.c b/sys/pci/if_pn.c index 8483cc98c5eb..42c3f9a9bc18 100644 --- a/sys/pci/if_pn.c +++ b/sys/pci/if_pn.c @@ -200,7 +200,7 @@ static device_method_t pn_methods[] = { }; static driver_t pn_driver = { - "pn", + "if_pn", pn_methods, sizeof(struct pn_softc), }; diff --git a/sys/pci/if_rl.c b/sys/pci/if_rl.c index c7bf0b478abc..8547e9387b05 100644 --- a/sys/pci/if_rl.c +++ b/sys/pci/if_rl.c @@ -221,7 +221,7 @@ static device_method_t rl_methods[] = { }; static driver_t rl_driver = { - "rl", + "if_rl", rl_methods, sizeof(struct rl_softc) }; diff --git a/sys/pci/if_sf.c b/sys/pci/if_sf.c index 9d67f91357a3..0e9005a80657 100644 --- a/sys/pci/if_sf.c +++ b/sys/pci/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/pci/if_sis.c b/sys/pci/if_sis.c index 419c176719c1..f9e50dee6b34 100644 --- a/sys/pci/if_sis.c +++ b/sys/pci/if_sis.c @@ -178,7 +178,7 @@ static device_method_t sis_methods[] = { }; static driver_t sis_driver = { - "sis", + "if_sis", sis_methods, sizeof(struct sis_softc) }; diff --git a/sys/pci/if_sk.c b/sys/pci/if_sk.c index 04c1bf72fe09..9e06a35f1851 100644 --- a/sys/pci/if_sk.c +++ b/sys/pci/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/pci/if_ste.c b/sys/pci/if_ste.c index 2d6d31eb215a..3f6c6864795f 100644 --- a/sys/pci/if_ste.c +++ b/sys/pci/if_ste.c @@ -165,7 +165,7 @@ static device_method_t ste_methods[] = { }; static driver_t ste_driver = { - "ste", + "if_ste", ste_methods, sizeof(struct ste_softc) }; diff --git a/sys/pci/if_ti.c b/sys/pci/if_ti.c index 947f6c1c26ee..22d342068e34 100644 --- a/sys/pci/if_ti.c +++ b/sys/pci/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/pci/if_tl.c b/sys/pci/if_tl.c index f848d0a3deb9..a593cd345035 100644 --- a/sys/pci/if_tl.c +++ b/sys/pci/if_tl.c @@ -354,7 +354,7 @@ static device_method_t tl_methods[] = { }; static driver_t tl_driver = { - "tl", + "if_tl", tl_methods, sizeof(struct tl_softc) }; diff --git a/sys/pci/if_vr.c b/sys/pci/if_vr.c index 23f9ca90e8a0..a4a22d83a250 100644 --- a/sys/pci/if_vr.c +++ b/sys/pci/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) }; diff --git a/sys/pci/if_wb.c b/sys/pci/if_wb.c index f5770bd3776e..f309006e2383 100644 --- a/sys/pci/if_wb.c +++ b/sys/pci/if_wb.c @@ -222,7 +222,7 @@ static device_method_t wb_methods[] = { }; static driver_t wb_driver = { - "wb", + "if_wb", wb_methods, sizeof(struct wb_softc) }; diff --git a/sys/pci/if_xl.c b/sys/pci/if_xl.c index 7358dd8b8329..e6bce9f6f465 100644 --- a/sys/pci/if_xl.c +++ b/sys/pci/if_xl.c @@ -277,7 +277,7 @@ static device_method_t xl_methods[] = { }; static driver_t xl_driver = { - "xl", + "if_xl", xl_methods, sizeof(struct xl_softc) };