summaryrefslogtreecommitdiff
path: root/sys/arch/macppc
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2010-09-22 02:28:38 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2010-09-22 02:28:38 +0000
commite41d9f7ea16f7ce341e82419efe19761578e7d54 (patch)
tree12465a41de259b93fe2d84a2af2bd246f61e147e /sys/arch/macppc
parentffb4c45f9783d751789d6c43deafa3721fe0db80 (diff)
remove unused offset argument to rbus functions
ok krw@ kettenis@
Diffstat (limited to 'sys/arch/macppc')
-rw-r--r--sys/arch/macppc/macppc/rbus_machdep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/macppc/macppc/rbus_machdep.c b/sys/arch/macppc/macppc/rbus_machdep.c
index 87f5a26fbbb..6a91321b076 100644
--- a/sys/arch/macppc/macppc/rbus_machdep.c
+++ b/sys/arch/macppc/macppc/rbus_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rbus_machdep.c,v 1.10 2010/04/21 03:03:26 deraadt Exp $ */
+/* $OpenBSD: rbus_machdep.c,v 1.11 2010/09/22 02:28:37 jsg Exp $ */
/* $NetBSD: rbus_machdep.c,v 1.2 1999/10/15 06:43:06 haya Exp $ */
/*
@@ -49,14 +49,14 @@ rbus_pccbb_parent_mem(struct device *self, struct pci_attach_args *pa)
macppc_cardbus_init(pa->pa_pc, pa->pa_tag);
return (rbus_new_root_share(pa->pa_memt, pa->pa_memex,
- 0x00000000, 0xffffffff, 0));
+ 0x00000000, 0xffffffff));
}
rbus_tag_t
rbus_pccbb_parent_io(struct device *self, struct pci_attach_args *pa)
{
return (rbus_new_root_share(pa->pa_iot, pa->pa_ioex,
- 0x0000, 0xffff, 0));
+ 0x0000, 0xffff));
}
/*