diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2005-01-02 19:33:12 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2005-01-02 19:33:12 +0000 |
commit | 6e7f741f2595c33e8a71d8ad7e710e8c3af83e3f (patch) | |
tree | c0fa1b5cff28375fdbaba9ea3988c21b5cf3e955 /sys/arch/sgi/include | |
parent | 16ca1d6efaee80326ff480280d3549020b6e7c62 (diff) |
Fix typo.
Diffstat (limited to 'sys/arch/sgi/include')
-rw-r--r-- | sys/arch/sgi/include/bus.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/sgi/include/bus.h b/sys/arch/sgi/include/bus.h index f361369cb23..be40dd46561 100644 --- a/sys/arch/sgi/include/bus.h +++ b/sys/arch/sgi/include/bus.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bus.h,v 1.3 2004/08/10 19:16:18 deraadt Exp $ */ +/* $OpenBSD: bus.h,v 1.4 2005/01/02 19:33:11 kettenis Exp $ */ /* * Copyright (c) 2003-2004 Opsycon AB Sweden. All rights reserved. @@ -88,7 +88,8 @@ struct mips_bus_space { #define bus_space_map(t, o, s, c, p) (*(t)->_space_map)((t), (o), (s), (c), (p)) #define bus_space_unmap(t, h, s) (*(t)->_space_unmap)((t), (h), (s)) -#define bus_space_subregion(t, h, o, s, p) (*(t)->_space_map)((t), (h), (o), (s), (p)) +#define bus_space_subregion(t, h, o, s, p) \ + (*(t)->_space_subregion)((t), (h), (o), (s), (p)) /* Helper function in pmap.c */ int bus_mem_add_mapping(bus_addr_t, bus_size_t, int, bus_space_handle_t *); |