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:
wpaul 1999-09-20 08:14:39 +00:00
parent 69c3a33bfd
commit 28db81412e
18 changed files with 18 additions and 18 deletions

View File

@ -201,7 +201,7 @@ static device_method_t sf_methods[] = {
};
static driver_t sf_driver = {
"sf",
"if_sf",
sf_methods,
sizeof(struct sf_softc),
};

View File

@ -174,7 +174,7 @@ static device_method_t sk_methods[] = {
};
static driver_t sk_driver = {
"skc",
"if_skc",
sk_methods,
sizeof(struct sk_softc)
};

View File

@ -217,7 +217,7 @@ static device_method_t ti_methods[] = {
};
static driver_t ti_driver = {
"ti",
"if_ti",
ti_methods,
sizeof(struct ti_softc)
};

View File

@ -195,7 +195,7 @@ static device_method_t vr_methods[] = {
};
static driver_t vr_driver = {
"vr",
"if_vr",
vr_methods,
sizeof(struct vr_softc)
};

View File

@ -190,7 +190,7 @@ static device_method_t ax_methods[] = {
};
static driver_t ax_driver = {
"ax",
"if_ax",
ax_methods,
sizeof(struct ax_softc)
};

View File

@ -183,7 +183,7 @@ static device_method_t dm_methods[] = {
};
static driver_t dm_driver = {
"dm",
"if_dm",
dm_methods,
sizeof(struct dm_softc)
};

View File

@ -208,7 +208,7 @@ static device_method_t mx_methods[] = {
};
static driver_t mx_driver = {
"mx",
"if_mx",
mx_methods,
sizeof(struct mx_softc)
};

View File

@ -200,7 +200,7 @@ static device_method_t pn_methods[] = {
};
static driver_t pn_driver = {
"pn",
"if_pn",
pn_methods,
sizeof(struct pn_softc),
};

View File

@ -221,7 +221,7 @@ static device_method_t rl_methods[] = {
};
static driver_t rl_driver = {
"rl",
"if_rl",
rl_methods,
sizeof(struct rl_softc)
};

View File

@ -201,7 +201,7 @@ static device_method_t sf_methods[] = {
};
static driver_t sf_driver = {
"sf",
"if_sf",
sf_methods,
sizeof(struct sf_softc),
};

View File

@ -178,7 +178,7 @@ static device_method_t sis_methods[] = {
};
static driver_t sis_driver = {
"sis",
"if_sis",
sis_methods,
sizeof(struct sis_softc)
};

View File

@ -174,7 +174,7 @@ static device_method_t sk_methods[] = {
};
static driver_t sk_driver = {
"skc",
"if_skc",
sk_methods,
sizeof(struct sk_softc)
};

View File

@ -165,7 +165,7 @@ static device_method_t ste_methods[] = {
};
static driver_t ste_driver = {
"ste",
"if_ste",
ste_methods,
sizeof(struct ste_softc)
};

View File

@ -217,7 +217,7 @@ static device_method_t ti_methods[] = {
};
static driver_t ti_driver = {
"ti",
"if_ti",
ti_methods,
sizeof(struct ti_softc)
};

View File

@ -354,7 +354,7 @@ static device_method_t tl_methods[] = {
};
static driver_t tl_driver = {
"tl",
"if_tl",
tl_methods,
sizeof(struct tl_softc)
};

View File

@ -195,7 +195,7 @@ static device_method_t vr_methods[] = {
};
static driver_t vr_driver = {
"vr",
"if_vr",
vr_methods,
sizeof(struct vr_softc)
};

View File

@ -222,7 +222,7 @@ static device_method_t wb_methods[] = {
};
static driver_t wb_driver = {
"wb",
"if_wb",
wb_methods,
sizeof(struct wb_softc)
};

View File

@ -277,7 +277,7 @@ static device_method_t xl_methods[] = {
};
static driver_t xl_driver = {
"xl",
"if_xl",
xl_methods,
sizeof(struct xl_softc)
};