diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-07-05 10:00:50 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-07-05 10:00:50 +0000 |
commit | 1e2cb14a7562811bb477e028c5c11fbf1f89176f (patch) | |
tree | ce5329ce6874a2f327d77ef99c3fc8767b1a680c /sys/arch/alpha | |
parent | 1a1b7b490a3552db79a9bc6aa95a2de2faf5b30a (diff) |
Get rid of the wrapper macros around extent_alloc*1
Pass the right amount of arguments and rename them back to their right names.
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r-- | sys/arch/alpha/dev/sgmap_common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/dev/sgmap_common.c b/sys/arch/alpha/dev/sgmap_common.c index 45867565d44..552d71e7935 100644 --- a/sys/arch/alpha/dev/sgmap_common.c +++ b/sys/arch/alpha/dev/sgmap_common.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sgmap_common.c,v 1.1 2001/03/21 17:26:38 art Exp $ */ +/* $OpenBSD: sgmap_common.c,v 1.2 2001/07/05 10:00:25 art Exp $ */ /* $NetBSD: sgmap_common.c,v 1.13 2000/06/29 09:02:57 mrg Exp $ */ /*- @@ -191,7 +191,7 @@ alpha_sgmap_alloc(map, origlen, sgmap, flags) origlen, len, map->_dm_sgvalen, map->_dm_boundary, boundary); #endif - error = extent_alloc(sgmap->aps_ex, map->_dm_sgvalen, alignment, + error = extent_alloc(sgmap->aps_ex, map->_dm_sgvalen, alignment, 0, boundary, (flags & BUS_DMA_NOWAIT) ? EX_NOWAIT : EX_WAITOK, &map->_dm_sgva); #if 0 |