summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1996-10-17 18:58:59 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1996-10-17 18:58:59 +0000
commit2b9e6c5e7f5d374bedd8dc448dbf2d911c34922d (patch)
treeb47b0315ff4187655c53d10d3bf9abcfbf5b160b /sys
parentca93c71400fb7cf6f50286cb95aadcf5264df736 (diff)
Remove unnecessary macros, what was I thinking?
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/arc/include/bus.h6
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) \