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/i386 | |
parent | ffb4c45f9783d751789d6c43deafa3721fe0db80 (diff) |
remove unused offset argument to rbus functions
ok krw@ kettenis@
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/rbus_machdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/i386/rbus_machdep.c b/sys/arch/i386/i386/rbus_machdep.c index 6c50ff43d0b..e123322becf 100644 --- a/sys/arch/i386/i386/rbus_machdep.c +++ b/sys/arch/i386/i386/rbus_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rbus_machdep.c,v 1.26 2010/01/13 09:10:33 jsg Exp $ */ +/* $OpenBSD: rbus_machdep.c,v 1.27 2010/09/22 02:28:37 jsg Exp $ */ /* $NetBSD: rbus_machdep.c,v 1.2 1999/10/15 06:43:06 haya Exp $ */ /* @@ -63,7 +63,7 @@ rbus_pccbb_parent_mem(struct device *self, struct pci_attach_args *pa) start = RBUS_MEM_START; size = ex->ex_end - start; - return (rbus_new_root_share(pa->pa_memt, ex, start, size, 0)); + return (rbus_new_root_share(pa->pa_memt, ex, start, size)); } rbus_tag_t @@ -88,7 +88,7 @@ rbus_pccbb_parent_io(struct device *self, struct pci_attach_args *pa) } size = ex->ex_end - start; - return (rbus_new_root_share(pa->pa_iot, ex, start, size, 0)); + return (rbus_new_root_share(pa->pa_iot, ex, start, size)); } void |