summaryrefslogtreecommitdiffstats
path: root/sys/dev/mii/nsgphy.c
diff options
context:
space:
mode:
authoryongari <yongari@FreeBSD.org>2006-07-03 02:53:40 +0000
committeryongari <yongari@FreeBSD.org>2006-07-03 02:53:40 +0000
commit5fe63e39e85c05f49c9c4e4bb6d46b012481331a (patch)
tree7c86d14d85c7a448cf7b3957e7f0f010c97b33fa /sys/dev/mii/nsgphy.c
parenta4a29e2efc3a44f4f0fd8fe3ae58b878c1d439bd (diff)
downloadFreeBSD-src-5fe63e39e85c05f49c9c4e4bb6d46b012481331a.zip
FreeBSD-src-5fe63e39e85c05f49c9c4e4bb6d46b012481331a.tar.gz
Replace hard-coded magic constants to system defined constants
(BUS_PROBE_DEFAULT, BUS_PROBE_GENERIC etc). There is no functional changes. Reviewed by: oleg, scottl
Diffstat (limited to 'sys/dev/mii/nsgphy.c')
-rw-r--r--sys/dev/mii/nsgphy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/mii/nsgphy.c b/sys/dev/mii/nsgphy.c
index 51b290f..f14be53 100644
--- a/sys/dev/mii/nsgphy.c
+++ b/sys/dev/mii/nsgphy.c
@@ -115,7 +115,7 @@ nsgphy_probe(device_t dev)
mpd = mii_phy_match(ma, gphyters);
if (mpd != NULL) {
device_set_desc(dev, mpd->mpd_name);
- return(0);
+ return(BUS_PROBE_DEFAULT);
}
return(ENXIO);
OpenPOWER on IntegriCloud