summaryrefslogtreecommitdiff
path: root/sys/dev/isa/uha_isa.c
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2005-11-23 11:30:15 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2005-11-23 11:30:15 +0000
commitfcf813dc561c01ef35828627afde907ab2be6db6 (patch)
tree6260a8289487ebc356bfe3642a807f187b76b0f3 /sys/dev/isa/uha_isa.c
parentdcb769a84f5ac99a41089b979c808541d2fbc842 (diff)
assume vtophys(vaddr_t) just what all the other archs expect; no functional change
Diffstat (limited to 'sys/dev/isa/uha_isa.c')
-rw-r--r--sys/dev/isa/uha_isa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/uha_isa.c b/sys/dev/isa/uha_isa.c
index 371c2d30f4d..684b44894c8 100644
--- a/sys/dev/isa/uha_isa.c
+++ b/sys/dev/isa/uha_isa.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uha_isa.c,v 1.6 2002/03/14 01:26:56 millert Exp $ */
+/* $OpenBSD: uha_isa.c,v 1.7 2005/11/23 11:30:14 mickey Exp $ */
/* $NetBSD: uha_isa.c,v 1.5 1996/10/21 22:41:21 thorpej Exp $ */
/*
@@ -63,7 +63,7 @@ struct cfattach uha_isa_ca = {
sizeof(struct uha_softc), uha_isa_probe, uha_isa_attach
};
-#define KVTOPHYS(x) vtophys(x)
+#define KVTOPHYS(x) vtophys((vaddr_t)(x))
int u14_find(bus_space_tag_t, bus_space_handle_t, struct uha_softc *);
void u14_start_mbox(struct uha_softc *, struct uha_mscp *);