mirror of
https://github.com/opnsense/src.git
synced 2026-04-02 07:55:21 -04:00
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:
parent
933f6f8689
commit
16ec9f077e
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue