summaryrefslogtreecommitdiffstats
path: root/sys/dev/mii/rlphy.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/mii/rlphy.c')
-rw-r--r--sys/dev/mii/rlphy.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/mii/rlphy.c b/sys/dev/mii/rlphy.c
index d687992..1847586 100644
--- a/sys/dev/mii/rlphy.c
+++ b/sys/dev/mii/rlphy.c
@@ -110,9 +110,10 @@ rlphy_probe(dev)
return (ENXIO);
/*
- * Make sure the parent is an `rl'.
+ * Make sure the parent is an `rl' or an `re'.
*/
- if (strcmp(device_get_name(parent), "rl") != 0)
+ if (strcmp(device_get_name(parent), "rl") != 0 &&
+ strcmp(device_get_name(parent), "re") != 0)
return (ENXIO);
device_set_desc(dev, "RealTek internal media interface");
OpenPOWER on IntegriCloud