summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2010-11-27 18:21:06 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2010-11-27 18:21:06 +0000
commit8b7930d3fc4ca67ba0ca80e95fa8746df3a8fb5f (patch)
treea786fb3eb5d1fb09730a127f17cb31ea29178c0d /sys
parentb76fc25e2f6671e9837c975c06b215a10e331621 (diff)
Missed one rbus_new_body() call in previous change.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/sgi/xbow/xbridge.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/sys/arch/sgi/xbow/xbridge.c b/sys/arch/sgi/xbow/xbridge.c
index b0afad487af..1cd92168b9e 100644
--- a/sys/arch/sgi/xbow/xbridge.c
+++ b/sys/arch/sgi/xbow/xbridge.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: xbridge.c,v 1.76 2010/09/22 02:28:37 jsg Exp $ */
+/* $OpenBSD: xbridge.c,v 1.77 2010/11/27 18:21:05 miod Exp $ */
/*
* Copyright (c) 2008, 2009 Miodrag Vallat.
@@ -3597,8 +3597,7 @@ xbridge_rbus_parent_io(struct pci_attach_args *pa)
* resources, return a valid body which will fail requests.
*/
if (rb == NULL)
- rb = rbus_new_body(pa->pa_iot, NULL, 0, 0,
- RBUS_SPACE_INVALID);
+ rb = rbus_new_body(pa->pa_iot, NULL, 0, 0, RBUS_SPACE_INVALID);
return rb;
}
@@ -3634,8 +3633,7 @@ xbridge_rbus_parent_mem(struct pci_attach_args *pa)
* resources, return a valid body which will fail requests.
*/
if (rb == NULL)
- rb = rbus_new_body(pa->pa_iot, NULL, 0, 0, 0,
- RBUS_SPACE_INVALID);
+ rb = rbus_new_body(pa->pa_iot, NULL, 0, 0, RBUS_SPACE_INVALID);
return rb;
}