netdev
[Top] [All Lists]

Re: Second 3c509 missing (2.5.71 thru 2.6.0-t7)

To: shemminger@xxxxxxxx (Stephen Hemminger)
Subject: Re: Second 3c509 missing (2.5.71 thru 2.6.0-t7)
From: Pete Clements <clem@xxxxxxxxxxxxxxxxxxxxx>
Date: Fri, 10 Oct 2003 18:39:34 -0400 (EDT)
Cc: clem@xxxxxxxxxxxxxxxxxxxxx, netdev@xxxxxxxxxxx
In-reply-to: <20031010124849.5ae48bd9.shemminger@xxxxxxxx> from Stephen Hemminger at "Oct 10, 2003 12:48:49 pm"
Sender: netdev-bounce@xxxxxxxxxxx
Quoting Stephen Hemminger
  Tried, but does not fix, result is same. Thanks.
  > >
  > > I use 3c509 compiled in. Second card not detected. This has been the
  > > case with the stock kernel since 2.5.71.  Have been replacing the
  > > code for all kernels since .70.  Have not tried as modules.
  > 
  > Try this.
  > 
  > diff -Nru a/drivers/net/Space.c b/drivers/net/Space.c
  > --- a/drivers/net/Space.c   Fri Oct 10 10:03:42 2003
  > +++ b/drivers/net/Space.c   Fri Oct 10 10:03:42 2003
  > @@ -433,17 +433,15 @@
  >     
  >  #ifdef CONFIG_SBNI
  >     for (num = 0; num < 8; ++num)
  > -           if (sbni_probe(num))
  > -                   break;
  > +           sbni_probe(num);
  >  #endif
  >  #ifdef CONFIG_TR
  >     for (num = 0; num < 8; ++num)
  > -           if (trif_probe(num))
  > -                   break;
  > +           trif_probe(num);
  >  #endif
  >     for (num = 0; num < 8; ++num)
  > -           if (ethif_probe(num))
  > -                   break;
  > +           ethif_probe(num);
  > +
  >  #ifdef CONFIG_COPS
  >     cops_probe(0);
  >     cops_probe(1);
  > 

-- 
Pete Clements 

<Prev in Thread] Current Thread [Next in Thread>