diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-16 13:05:21 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-16 13:05:21 +0000 |
commit | 12cf882ebb84905c2a2505bedfa81af87876511a (patch) | |
tree | 17347144e9e7851356a2a4b995dadd6307643954 | |
parent | 499c47702b33181e24a03877731aacf459ef93c7 (diff) |
{in,out}*() macros are already in pio.h
-rw-r--r-- | sys/arch/pica/pica/pica.h | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/sys/arch/pica/pica/pica.h b/sys/arch/pica/pica/pica.h index d1fa9ecf437..c8e2a880f6c 100644 --- a/sys/arch/pica/pica/pica.h +++ b/sys/arch/pica/pica/pica.h @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)pica.h 8.1 (Berkeley) 6/10/93 - * $Id: pica.h,v 1.1 1995/10/18 10:39:16 deraadt Exp $ + * $Id: pica.h,v 1.2 1995/12/16 13:05:20 deraadt Exp $ */ /* @@ -54,21 +54,6 @@ #define MIPS_PICA_H 1 /* - * I/O macros. - */ - -#define outb(a,v) (*(volatile unsigned char*)(a) = (v)) -#define outh(a,v) (*(volatile unsigned short*)(a) = (v)) -#define out16(a,v) outh(a,v) -#define outw(a,v) (*(volatile unsigned int*)(a) = (v)) -#define out32(a,v) outw(a,v) -#define inb(a) (*(volatile unsigned char*)(a)) -#define inh(a) (*(volatile unsigned short*)(a)) -#define in16(a) inh(a) -#define inw(a) (*(volatile unsigned int*)(a)) -#define in32(a) inw(a) - -/* * PICA's Physical address space */ |