From 16ec9f077ed528d694fdc2fca5dcda90abbda8d4 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Fri, 28 Apr 2000 05:01:35 +0000 Subject: [PATCH] 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 --- sys/dev/ed/if_ed_pccard.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/ed/if_ed_pccard.c b/sys/dev/ed/if_ed_pccard.c index c41cd72db2c..678f87a1b29 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);