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
This commit is contained in:
Warner Losh 2000-04-28 05:01:35 +00:00
parent 933f6f8689
commit 16ec9f077e

View file

@ -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);