aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2006-07-17 03:47:18 +0000
committerWarner Losh <imp@FreeBSD.org>2006-07-17 03:47:18 +0000
commitaab9226995b17ffa77fad7edda4480080205e226 (patch)
treef6ddf89079d733c265442a63b9edd23acdcbeb01 /sys
parente4cec2839810d2bb562e013747e4036063d21f22 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/sio/sio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c
index a2057e0d49c0..834e8eb06fb0 100644
--- a/sys/dev/sio/sio.c
+++ b/sys/dev/sio/sio.c
@@ -700,7 +700,7 @@ sioprobe(dev, xrid, rclk, noprobe)
device_set_softc(dev, NULL);
free(com, M_DEVBUF);
}
- return (result == 0 ? BUS_PROBE_DEFAULT : result);
+ return (result == 0 ? BUS_PROBE_DEFAULT + 1 : result);
}
/*
@@ -777,7 +777,7 @@ sioprobe(dev, xrid, rclk, noprobe)
device_set_softc(dev, NULL);
free(com, M_DEVBUF);
}
- return (result == 0 ? BUS_PROBE_DEFAULT : result);
+ return (result == 0 ? BUS_PROBE_DEFAULT + 1 : result);
}
#ifdef COM_ESP