diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-08-24 22:46:26 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-08-24 22:46:26 +0000 |
commit | b15d7d9843b131a85d691de6225bd447f533aecb (patch) | |
tree | 339931fc97ce7d0a9ee5962180c993fc82be334f /sys/arch/mvme88k/dev | |
parent | 6ccba8e2eb4fc64e976fff7c674151d915e8640e (diff) |
There is no need to hide potentially useful stuff in .c files.
Diffstat (limited to 'sys/arch/mvme88k/dev')
-rw-r--r-- | sys/arch/mvme88k/dev/bugio.c | 37 |
1 files changed, 1 insertions, 36 deletions
diff --git a/sys/arch/mvme88k/dev/bugio.c b/sys/arch/mvme88k/dev/bugio.c index eafea1b7a1c..8973ee4ef8b 100644 --- a/sys/arch/mvme88k/dev/bugio.c +++ b/sys/arch/mvme88k/dev/bugio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bugio.c,v 1.7 2001/03/09 05:44:38 smurph Exp $ */ +/* $OpenBSD: bugio.c,v 1.8 2001/08/24 22:46:23 miod Exp $ */ /* Copyright (c) 1998 Steve Murphree, Jr. */ #include <sys/param.h> #include <sys/systm.h> @@ -217,41 +217,6 @@ bugnetctrl(struct bugniocall *niocall) /* OSCTXT();*/ } -typedef struct netcnfgp { - unsigned int magic; - unsigned int nodemem; - unsigned int bfla; - unsigned int bfea; - unsigned int bfed; - unsigned int bfl; - unsigned int bfbo; - unsigned int tbuffer; - unsigned char cipa[4]; - unsigned char sipa[4]; - unsigned char netmask[4]; - unsigned char broadcast[4]; - unsigned char gipa[4]; - unsigned char bootp_retry; - unsigned char tftp_retry; - unsigned char bootp_ctl; - unsigned char cnfgp_ctl; - unsigned char filename[64]; - unsigned char argfname[64]; -} NETCNFGP; - -struct bugniotcall { - unsigned char clun; - unsigned char dlun; - unsigned char ci; - unsigned char cd; - NETCNFGP * netcfngp_p; - void * unused; -#define NIOT_READ (1<<0) -#define NIOT_WRITE (1<<1) -#define NIOT_NVRAM (1<<2) - unsigned long cntrlflag; -}; - int bugnetcfg(struct bugniotcall *niotcall) { |