Fix the strings in the driver_t structs so that they match the new names
in the DRIVER_MODULES() declarations. *sigh*
This commit is contained in:
parent
69c3a33bfd
commit
28db81412e
@ -201,7 +201,7 @@ static device_method_t sf_methods[] = {
|
||||
};
|
||||
|
||||
static driver_t sf_driver = {
|
||||
"sf",
|
||||
"if_sf",
|
||||
sf_methods,
|
||||
sizeof(struct sf_softc),
|
||||
};
|
||||
|
@ -174,7 +174,7 @@ static device_method_t sk_methods[] = {
|
||||
};
|
||||
|
||||
static driver_t sk_driver = {
|
||||
"skc",
|
||||
"if_skc",
|
||||
sk_methods,
|
||||
sizeof(struct sk_softc)
|
||||
};
|
||||
|
@ -217,7 +217,7 @@ static device_method_t ti_methods[] = {
|
||||
};
|
||||
|
||||
static driver_t ti_driver = {
|
||||
"ti",
|
||||
"if_ti",
|
||||
ti_methods,
|
||||
sizeof(struct ti_softc)
|
||||
};
|
||||
|
@ -195,7 +195,7 @@ static device_method_t vr_methods[] = {
|
||||
};
|
||||
|
||||
static driver_t vr_driver = {
|
||||
"vr",
|
||||
"if_vr",
|
||||
vr_methods,
|
||||
sizeof(struct vr_softc)
|
||||
};
|
||||
|
@ -190,7 +190,7 @@ static device_method_t ax_methods[] = {
|
||||
};
|
||||
|
||||
static driver_t ax_driver = {
|
||||
"ax",
|
||||
"if_ax",
|
||||
ax_methods,
|
||||
sizeof(struct ax_softc)
|
||||
};
|
||||
|
@ -183,7 +183,7 @@ static device_method_t dm_methods[] = {
|
||||
};
|
||||
|
||||
static driver_t dm_driver = {
|
||||
"dm",
|
||||
"if_dm",
|
||||
dm_methods,
|
||||
sizeof(struct dm_softc)
|
||||
};
|
||||
|
@ -208,7 +208,7 @@ static device_method_t mx_methods[] = {
|
||||
};
|
||||
|
||||
static driver_t mx_driver = {
|
||||
"mx",
|
||||
"if_mx",
|
||||
mx_methods,
|
||||
sizeof(struct mx_softc)
|
||||
};
|
||||
|
@ -200,7 +200,7 @@ static device_method_t pn_methods[] = {
|
||||
};
|
||||
|
||||
static driver_t pn_driver = {
|
||||
"pn",
|
||||
"if_pn",
|
||||
pn_methods,
|
||||
sizeof(struct pn_softc),
|
||||
};
|
||||
|
@ -221,7 +221,7 @@ static device_method_t rl_methods[] = {
|
||||
};
|
||||
|
||||
static driver_t rl_driver = {
|
||||
"rl",
|
||||
"if_rl",
|
||||
rl_methods,
|
||||
sizeof(struct rl_softc)
|
||||
};
|
||||
|
@ -201,7 +201,7 @@ static device_method_t sf_methods[] = {
|
||||
};
|
||||
|
||||
static driver_t sf_driver = {
|
||||
"sf",
|
||||
"if_sf",
|
||||
sf_methods,
|
||||
sizeof(struct sf_softc),
|
||||
};
|
||||
|
@ -178,7 +178,7 @@ static device_method_t sis_methods[] = {
|
||||
};
|
||||
|
||||
static driver_t sis_driver = {
|
||||
"sis",
|
||||
"if_sis",
|
||||
sis_methods,
|
||||
sizeof(struct sis_softc)
|
||||
};
|
||||
|
@ -174,7 +174,7 @@ static device_method_t sk_methods[] = {
|
||||
};
|
||||
|
||||
static driver_t sk_driver = {
|
||||
"skc",
|
||||
"if_skc",
|
||||
sk_methods,
|
||||
sizeof(struct sk_softc)
|
||||
};
|
||||
|
@ -165,7 +165,7 @@ static device_method_t ste_methods[] = {
|
||||
};
|
||||
|
||||
static driver_t ste_driver = {
|
||||
"ste",
|
||||
"if_ste",
|
||||
ste_methods,
|
||||
sizeof(struct ste_softc)
|
||||
};
|
||||
|
@ -217,7 +217,7 @@ static device_method_t ti_methods[] = {
|
||||
};
|
||||
|
||||
static driver_t ti_driver = {
|
||||
"ti",
|
||||
"if_ti",
|
||||
ti_methods,
|
||||
sizeof(struct ti_softc)
|
||||
};
|
||||
|
@ -354,7 +354,7 @@ static device_method_t tl_methods[] = {
|
||||
};
|
||||
|
||||
static driver_t tl_driver = {
|
||||
"tl",
|
||||
"if_tl",
|
||||
tl_methods,
|
||||
sizeof(struct tl_softc)
|
||||
};
|
||||
|
@ -195,7 +195,7 @@ static device_method_t vr_methods[] = {
|
||||
};
|
||||
|
||||
static driver_t vr_driver = {
|
||||
"vr",
|
||||
"if_vr",
|
||||
vr_methods,
|
||||
sizeof(struct vr_softc)
|
||||
};
|
||||
|
@ -222,7 +222,7 @@ static device_method_t wb_methods[] = {
|
||||
};
|
||||
|
||||
static driver_t wb_driver = {
|
||||
"wb",
|
||||
"if_wb",
|
||||
wb_methods,
|
||||
sizeof(struct wb_softc)
|
||||
};
|
||||
|
@ -277,7 +277,7 @@ static device_method_t xl_methods[] = {
|
||||
};
|
||||
|
||||
static driver_t xl_driver = {
|
||||
"xl",
|
||||
"if_xl",
|
||||
xl_methods,
|
||||
sizeof(struct xl_softc)
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user