diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2010-09-22 02:28:38 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2010-09-22 02:28:38 +0000 |
commit | e41d9f7ea16f7ce341e82419efe19761578e7d54 (patch) | |
tree | 12465a41de259b93fe2d84a2af2bd246f61e147e /sys/arch/hppa64 | |
parent | ffb4c45f9783d751789d6c43deafa3721fe0db80 (diff) |
remove unused offset argument to rbus functions
ok krw@ kettenis@
Diffstat (limited to 'sys/arch/hppa64')
-rw-r--r-- | sys/arch/hppa64/dev/elroy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa64/dev/elroy.c b/sys/arch/hppa64/dev/elroy.c index 9e689a00a95..1f134ebdddb 100644 --- a/sys/arch/hppa64/dev/elroy.c +++ b/sys/arch/hppa64/dev/elroy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: elroy.c,v 1.8 2010/07/24 19:34:54 kettenis Exp $ */ +/* $OpenBSD: elroy.c,v 1.9 2010/09/22 02:28:37 jsg Exp $ */ /* * Copyright (c) 2005 Michael Shalayeff @@ -468,7 +468,7 @@ elroy_alloc_parent(struct device *self, struct pci_attach_args *pa, int io) return (NULL); extent_free(ex, start, size, EX_NOWAIT); - return rbus_new_root_share(tag, ex, start, size, 0); + return rbus_new_root_share(tag, ex, start, size); #else return (NULL); #endif |