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:
imp 2000-04-28 05:01:35 +00:00
parent c0da15f8f0
commit d0a36ab34d

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