summaryrefslogtreecommitdiff
path: root/sys/dev/ic/iha.h
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-11-05 17:25:59 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-11-05 17:25:59 +0000
commit85530efaf7a6a42f72dd88dd2812fc34f33a931e (patch)
treefe27ed806015eba36ede599b284de31066d02abb /sys/dev/ic/iha.h
parent6278fb02068a0fc75a8a6ecb4ed0a3292aad76ab (diff)
Switch everything to the new bus_dmamap_sync API.
Most work by Wilbern Cobb <vedge@csoft.org> with some fixes from me, mickey@ and drahn@.
Diffstat (limited to 'sys/dev/ic/iha.h')
-rw-r--r--sys/dev/ic/iha.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/sys/dev/ic/iha.h b/sys/dev/ic/iha.h
index 1f1aa3e7592..abe3eb522ed 100644
--- a/sys/dev/ic/iha.h
+++ b/sys/dev/ic/iha.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: iha.h,v 1.7 2001/08/26 02:39:05 krw Exp $ */
+/* $OpenBSD: iha.h,v 1.8 2001/11/05 17:25:58 art Exp $ */
/*
* Initio INI-9xxxU/UW SCSI Device Driver
*
@@ -446,14 +446,4 @@ int iha_intr __P((void *));
void iha_minphys __P((struct buf *));
int iha_init_tulip __P((struct iha_softc *));
-#ifdef __HAS_NEW_BUS_DMAMAP_SYNC
-#define iha_bus_dmamap_sync(tag, map, off, len, op) \
- bus_dmamap_sync((tag), (map), (off), (len), (op))
-#else
-#define iha_bus_dmamap_sync(tag, map, off, len, op) \
- bus_dmamap_sync((tag), (map), (op))
-#endif
-
-
-