diff options
| author | leo <leo@NetBSD.org> | 1998-12-01 15:32:28 +0000 |
|---|---|---|
| committer | leo <leo@NetBSD.org> | 1998-12-01 15:32:28 +0000 |
| commit | 7cce2beefa161b7ef8e5fb1f42d40868998ba87f (patch) | |
| tree | e3355be56dbc9d9eeac5f12cefbf209f1cc6868f /sys/arch/atari/include | |
| parent | 70249fa2f25181c1f743995fcecda6f6973ae3a2 (diff) | |
Fix the __abs_copy() macro (wrong parameters to __abs_opname).
Diffstat (limited to 'sys/arch/atari/include')
| -rw-r--r-- | sys/arch/atari/include/bus.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/atari/include/bus.h b/sys/arch/atari/include/bus.h index 0aecf41e36d..17d4ff126bb 100644 --- a/sys/arch/atari/include/bus.h +++ b/sys/arch/atari/include/bus.h @@ -1,4 +1,4 @@ -/* $NetBSD: bus.h,v 1.13 1998/05/25 09:08:27 leo Exp $ */ +/* $NetBSD: bus.h,v 1.14 1998/12/01 15:32:28 leo Exp $ */ /*- * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -301,7 +301,7 @@ struct atari_bus_space { #define __abs_set(type, sz, t, h, o, v, c) \ (*(t)->__abs_opname(type,sz))(t, h, o, v, c) #define __abs_copy(sz, t, h1, o1, h2, o2, cnt) \ - (*(t)->__abs_opname(c,sz))(h1, o1, h2, o2, cnt) + (*(t)->__abs_opname(c,sz))(t, h1, o1, h2, o2, cnt) /* * Check accesibility of the location for various sized bus accesses |
