diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-06-07 19:13:09 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-06-07 19:13:09 +0000 |
commit | b5ed5d0bb620bdf2367f781b638108364bd15b42 (patch) | |
tree | d0709d6965fe4f07ffa248153c1e30b9a8c97af0 /sys/arch/sparc64/include | |
parent | 455a65bb50d1cf5100adf4edb864be6c20a769e8 (diff) |
Remove unused bus_space_probe().
Diffstat (limited to 'sys/arch/sparc64/include')
-rw-r--r-- | sys/arch/sparc64/include/bus.h | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/sys/arch/sparc64/include/bus.h b/sys/arch/sparc64/include/bus.h index 38ab7a81f64..0d8a8bd3e29 100644 --- a/sys/arch/sparc64/include/bus.h +++ b/sys/arch/sparc64/include/bus.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bus.h,v 1.18 2006/01/06 18:53:05 millert Exp $ */ +/* $OpenBSD: bus.h,v 1.19 2006/06/07 19:13:07 miod Exp $ */ /* $NetBSD: bus.h,v 1.31 2001/09/21 15:30:41 wiz Exp $ */ /*- @@ -352,22 +352,6 @@ bus_space_barrier(t, h, o, s, f) #define BUS_SPACE_BARRIER_READ 0x01 /* force read barrier */ #define BUS_SPACE_BARRIER_WRITE 0x02 /* force write barrier */ -/* - * Device space probe assistant. - * The optional callback function's arguments are: - * the temporary virtual address - * the passed `arg' argument - */ -int bus_space_probe( - bus_space_tag_t, - bus_addr_t, - bus_size_t, /* probe size */ - size_t, /* offset */ - int, /* flags */ - int (*)(void *, void *), /* callback function */ - void *); /* callback arg */ - - #define BUS_SPACE_ALIGNED_POINTER(p, t) ALIGNED_POINTER(p, t) /* |