diff options
author | imp <imp@FreeBSD.org> | 2000-04-28 05:01:35 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2000-04-28 05:01:35 +0000 |
commit | 1d7addbc94b527672bb9e50f518b052c9e89b59e (patch) | |
tree | 3e496271b259e78abb60c1fbc98092cf06337a36 /sys/dev/ed/if_ed_pccard.c | |
parent | 3e88ebfc3bb1caf670976b0728a058d37f5b2d3a (diff) | |
download | FreeBSD-src-1d7addbc94b527672bb9e50f518b052c9e89b59e.zip FreeBSD-src-1d7addbc94b527672bb9e50f518b052c9e89b59e.tar.gz |
sanpai-san (sanpai@sanpai.org) suggested that we put the novel probe
first. This will fix a few cards that hang on the WD probe. He tells
me that PAO went one step farther and removed the WD proble completely
and none of the cards in the 2.x database broke in PAO3. Since I'm
more conservative in this code, I'm just swapping the order, which he
said also fixed his problem.
Reviewed by: mdodd, iwasaki
Submitted by: sanpai@sanpai.org
Diffstat (limited to 'sys/dev/ed/if_ed_pccard.c')
-rw-r--r-- | sys/dev/ed/if_ed_pccard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ed/if_ed_pccard.c b/sys/dev/ed/if_ed_pccard.c index c41cd72..678f87a 100644 --- a/sys/dev/ed/if_ed_pccard.c +++ b/sys/dev/ed/if_ed_pccard.c @@ -108,12 +108,12 @@ ed_pccard_probe(device_t dev) { int error; - error = ed_probe_WD80x3(dev); + error = ed_probe_Novell(dev); if (error == 0) goto end; ed_release_resources(dev); - error = ed_probe_Novell(dev); + error = ed_probe_WD80x3(dev); if (error == 0) goto end; ed_release_resources(dev); |