From Matthias Drochner:

give global constants more meaningful names
This commit is contained in:
perry 1997-03-15 22:20:55 +00:00
parent 5347892165
commit 520b71bb34
2 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pcnet_isapnp.c,v 1.1.1.1 1997/03/14 02:40:33 perry Exp $ */
/* $NetBSD: pcnet_isapnp.c,v 1.2 1997/03/15 22:20:56 perry Exp $ */
/*
* Copyright (c) 1996
@ -49,7 +49,7 @@
char etherdev[20];
int rap, rdp;
int lance_rap, lance_rdp;
u_char eth_myaddr[6];
@ -68,8 +68,8 @@ char *myadr;
printf("printf using PCNET @ %x\n", iobase);
rap = iobase + 0x12;
rdp = iobase + 0x10;
lance_rap = iobase + 0x12;
lance_rdp = iobase + 0x10;
/* make sure it's stopped */
am7990_stop();

View File

@ -1,4 +1,4 @@
/* $NetBSD: pcnet_pci.c,v 1.1.1.1 1997/03/14 02:40:33 perry Exp $ */
/* $NetBSD: pcnet_pci.c,v 1.2 1997/03/15 22:20:55 perry Exp $ */
/*
* Copyright (c) 1996
@ -44,7 +44,7 @@
char etherdev[20];
int rap, rdp;
int lance_rap, lance_rdp;
static pcihdl_t hdl;
@ -74,8 +74,8 @@ char *myadr;
}
iobase &= 0xfffffffc;
rap = iobase + 0x12;
rdp = iobase + 0x10;
lance_rap = iobase + 0x12;
lance_rdp = iobase + 0x10;
/* make sure it's stopped */
am7990_stop();