diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-19 17:51:05 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-19 17:51:05 +0000 |
commit | 90c3c3a62b4898c6864a315c8d9c8e8b4f0c8f0e (patch) | |
tree | b9eda07dde1a263c18e156a177ce5d3012fe0c4c /sys/arch/mac68k | |
parent | bf1dc28233ff6cc953da64b2158753d762410dc6 (diff) |
Fix bus_space_copy_region_ macro that got messed up by unpeeing.
miod@ OK
Diffstat (limited to 'sys/arch/mac68k')
-rw-r--r-- | sys/arch/mac68k/include/bus.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/mac68k/include/bus.h b/sys/arch/mac68k/include/bus.h index 43fe05ae9e0..df57512c318 100644 --- a/sys/arch/mac68k/include/bus.h +++ b/sys/arch/mac68k/include/bus.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bus.h,v 1.7 2002/03/14 01:26:35 millert Exp $ */ +/* $OpenBSD: bus.h,v 1.8 2002/03/19 17:51:04 millert Exp $ */ /* $NetBSD: bus.h,v 1.9 1998/01/13 18:32:15 scottr Exp $ */ /*- @@ -543,7 +543,8 @@ int mac68k_bus_space_probe(bus_space_tag_t t, */ #define __MAC68K_copy_region_N(BYTES) \ -static __inline void __CONCAT(bus_space_copy_region_,BYTES) \(bus_space_tag_t, \ +static __inline void __CONCAT(bus_space_copy_region_,BYTES) \ + (bus_space_tag_t, \ bus_space_handle_t bsh1, bus_size_t off1, \ bus_space_handle_t bsh2, bus_size_t off2, \ bus_size_t count); \ |