diff options
author | imp <imp@FreeBSD.org> | 2005-03-01 08:58:06 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2005-03-01 08:58:06 +0000 |
commit | 6ca1ed35db7b9298655e2f956409b1b7bc9efbe0 (patch) | |
tree | a34360b3a438a6bdc8d086e0c722c1abea55e974 /sys/dev/sbsh | |
parent | cccc27e99ac4bc26fac1df23afdfe1a15238677f (diff) | |
download | FreeBSD-src-6ca1ed35db7b9298655e2f956409b1b7bc9efbe0.zip FreeBSD-src-6ca1ed35db7b9298655e2f956409b1b7bc9efbe0.tar.gz |
Use BUS_PROBE_DEFAULT in preference to 0 and BUS_PROBE_LOW_PRIORITY in
preference to some random negative number to allow other drivers a
bite at the apple.
Diffstat (limited to 'sys/dev/sbsh')
-rw-r--r-- | sys/dev/sbsh/if_sbsh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sbsh/if_sbsh.c b/sys/dev/sbsh/if_sbsh.c index 19292b1..cf82619 100644 --- a/sys/dev/sbsh/if_sbsh.c +++ b/sys/dev/sbsh/if_sbsh.c @@ -213,7 +213,7 @@ sbsh_probe(device_t dev) return (ENXIO); device_set_desc(dev, "Granch SBNI16 G.SHDSL Modem"); - return (0); + return (BUS_PROBE_DEFAULT); } static int |