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/hppa | |
parent | ffb4c45f9783d751789d6c43deafa3721fe0db80 (diff) |
remove unused offset argument to rbus functions
ok krw@ kettenis@
Diffstat (limited to 'sys/arch/hppa')
-rw-r--r-- | sys/arch/hppa/dev/dino.c | 4 | ||||
-rw-r--r-- | sys/arch/hppa/dev/elroy.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/hppa/dev/dino.c b/sys/arch/hppa/dev/dino.c index 0d88cbce619..780c39c45e9 100644 --- a/sys/arch/hppa/dev/dino.c +++ b/sys/arch/hppa/dev/dino.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dino.c,v 1.27 2010/04/29 13:48:29 jsing Exp $ */ +/* $OpenBSD: dino.c,v 1.28 2010/09/22 02:28:37 jsg Exp $ */ /* * Copyright (c) 2003-2005 Michael Shalayeff @@ -639,7 +639,7 @@ dino_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); } #endif diff --git a/sys/arch/hppa/dev/elroy.c b/sys/arch/hppa/dev/elroy.c index 2d72384e6fc..62cac84df4f 100644 --- a/sys/arch/hppa/dev/elroy.c +++ b/sys/arch/hppa/dev/elroy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: elroy.c,v 1.6 2010/05/24 15:04:53 deraadt Exp $ */ +/* $OpenBSD: elroy.c,v 1.7 2010/09/22 02:28:37 jsg Exp $ */ /* * Copyright (c) 2005 Michael Shalayeff @@ -462,7 +462,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 |