summaryrefslogtreecommitdiffstats
path: root/sys/pci
diff options
context:
space:
mode:
Diffstat (limited to 'sys/pci')
-rw-r--r--sys/pci/if_ax.c2
-rw-r--r--sys/pci/if_dm.c2
-rw-r--r--sys/pci/if_mx.c2
-rw-r--r--sys/pci/if_pn.c2
-rw-r--r--sys/pci/if_rl.c2
-rw-r--r--sys/pci/if_sf.c2
-rw-r--r--sys/pci/if_sis.c2
-rw-r--r--sys/pci/if_sk.c2
-rw-r--r--sys/pci/if_ste.c2
-rw-r--r--sys/pci/if_ti.c2
-rw-r--r--sys/pci/if_tl.c2
-rw-r--r--sys/pci/if_vr.c2
-rw-r--r--sys/pci/if_wb.c2
-rw-r--r--sys/pci/if_xl.c2
14 files changed, 14 insertions, 14 deletions
diff --git a/sys/pci/if_ax.c b/sys/pci/if_ax.c
index 0cb2daf..6b26641 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 356eafd..157663a 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 739ff3b..b27f6ce 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 8483cc9..42c3f9a 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 c7bf0b4..8547e93 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 9d67f91..0e9005a 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 419c176..f9e50de 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 04c1bf7..9e06a35 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 2d6d31e..3f6c686 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 947f6c1..22d3420 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 f848d0a..a593cd3 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 23f9ca9..a4a22d8 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 f5770bd..f309006 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 7358dd8..e6bce9f 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)
};
OpenPOWER on IntegriCloud