From: Dave A. <ai...@us...> - 2001-02-11 19:04:49
|
Update of /cvsroot/linux-vax/kernel-2.4/drivers/net In directory usw-pr-cvs1:/tmp/cvs-serv12448 Modified Files: Makefile vaxlance.c Log Message: added vaxlance.c to the compile list fix typo in vaxlance.c Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/drivers/net/Makefile,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -r1.1.1.1 -r1.2 --- Makefile 2001/01/14 17:18:08 1.1.1.1 +++ Makefile 2001/02/11 19:05:20 1.2 @@ -188,6 +188,7 @@ obj-$(CONFIG_MIPS_JAZZ_SONIC) += jazzsonic.o obj-$(CONFIG_SGI_IOC3_ETH) += ioc3-eth.o obj-$(CONFIG_BAGETLANCE) += bagetlance.o +obj-$(CONFIG_VAX_LANCE) += vaxlance.o obj-$(CONFIG_DECLANCE) += declance.o obj-$(CONFIG_ATARILANCE) += atarilance.o obj-$(CONFIG_ATARI_BIONET) += atari_bionet.o Index: vaxlance.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/drivers/net/vaxlance.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- vaxlance.c 2001/01/20 23:45:25 1.2 +++ vaxlance.c 2001/02/11 19:05:20 1.3 @@ -1068,7 +1068,7 @@ /* Find all the lance cards on the system and initialize them */ -static int __init dec_lance_probe(void) +static int __init vax_lance_probe(void) { struct net_device *dev = NULL; static int called = 0; |