Subject: Re: Arp problems on recent -current kernel?
To: Jonathan Stone <jonathan@dsg.STANFORD.EDU>
From: Chris G Demetriou <Chris_G_Demetriou@LAGAVULIN.PDL.CS.CMU.EDU>
List: port-pmax
Date: 04/19/1995 02:58:23
I committed your patch, with the changes noted below.
I didn't do any of the cleanup that my fingers really wanted to do,
because i couldn't even reasonably test a compilation of the driver...


> + extern void lestart(struct ifnet *);

extern void lestart __P((struct ifnet *));

though i don't even think the extern is appropriate.


> ! 	extern int leinit(), lereset(), leioctl(), lestart(), ether_output();
---
> ! 	extern int leinit(), lereset(), leioctl(), ether_output();

i killed ether_output()'s declaration, too.


> ! 	/*ifp->if_output = ether_output;*/

i killed this line completely.


later,

chris