From: ? <uns...@us...> - 2002-05-23 16:20:48
|
Update of /cvsroot/linux-vax/kernel-2.4/drivers/net In directory usw-pr-cvs1:/tmp/cvs-serv9369 Modified Files: vaxsgec.c Log Message: Merge Richard Banks's latest vaxsgec.c with my own changes. It still does not drive the SGEC correctly, but it's getting there. This driver is currently "half LANCE driver, half SGEC driver". These changes bring it closer to being an SGEC driver. Index: vaxsgec.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/drivers/net/vaxsgec.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- vaxsgec.c 4 Sep 2001 03:17:17 -0000 1.1 +++ vaxsgec.c 23 May 2002 16:20:44 -0000 1.2 @@ -1,18 +1,20 @@ /* * SGEC ethernet driver. Reported as EZA0 etc by VAX Console. * - * SGEC stands for Second Generation Ethernet Card, and is the - * replacement for the LANCE adapters in the MicroVaxen. - * * Loosely adapted from vaxlance.c by Dave Airlie * by Richard Banks, Aug 2001 * */ [...1107 lines suppressed...] - /* lp->ll is the location of the registers for card */ - lp->ll = ll; - + lp->regs = regs; lp->name = sgecstr; - - /* busmaster_regval (CSR3) should be zero according to the PMAD-AA - * specification. - */ - lp->busmaster_regval = 0; lp->dev = dev; ether_setup(dev); @@ -1098,6 +895,3 @@ } #endif - - - |