diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-10-17 18:58:59 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-10-17 18:58:59 +0000 |
commit | 2b9e6c5e7f5d374bedd8dc448dbf2d911c34922d (patch) | |
tree | b47b0315ff4187655c53d10d3bf9abcfbf5b160b /sys/arch | |
parent | ca93c71400fb7cf6f50286cb95aadcf5264df736 (diff) |
Remove unnecessary macros, what was I thinking?
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/arc/include/bus.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/arch/arc/include/bus.h b/sys/arch/arc/include/bus.h index dce560ba790..d261d565555 100644 --- a/sys/arch/arc/include/bus.h +++ b/sys/arch/arc/include/bus.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bus.h,v 1.6 1996/09/18 17:20:54 niklas Exp $ */ +/* $OpenBSD: bus.h,v 1.7 1996/10/17 18:58:58 niklas Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All rights reserved. @@ -119,8 +119,6 @@ struct arc_isa_busmap { ((void)(*(volatile u_int64_t *)((h) + (o)) = (v))) /* These are extensions to the general NetBSD bus interface. */ -#define bus_io_read_raw_multi_1(t, h, o, a, c) \ - insb((h) + (o), (a), (c)) #define bus_io_read_raw_multi_2(t, h, o, a, c) \ insw((h) + (o), (a), ((c) >> 1)) #define bus_io_read_raw_multi_4(t, h, o, a, c) \ @@ -130,8 +128,6 @@ struct arc_isa_busmap { !!! bus_io_read_raw_multi_8 unimplemented !!! #endif -#define bus_io_write_raw_multi_1(t, h, o, a, c) \ - outsb((h) + (o), (a), (c)) #define bus_io_write_raw_multi_2(t, h, o, a, c) \ outsw((h) + (o), (a), ((c) >> 1)) #define bus_io_write_raw_multi_4(t, h, o, a, c) \ |