aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2024-02-16 17:42:30 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2024-02-16 17:42:30 +0000
commitccb1b43e20f5a1a0795b14f3ef39d5c2e15b424d (patch)
tree33bdd8451c793ccd90a6981e108012faa3223af4
parent68a3ff041129208ea98a3bd5142061176ab4165e (diff)
downloadsrc-ccb1b43e20f5a1a0795b14f3ef39d5c2e15b424d.tar.gz
src-ccb1b43e20f5a1a0795b14f3ef39d5c2e15b424d.zip
powerpc psim: Fix infinite recursion in bus_adjust_resource method
The default case needs to call bus_generic_adjust_resource to pass the request up the tree, not bus_adjust_resource which will just call this method again. Fixes: d7c16b333455 powerpc psim: Use bus_generic_rman_*
-rw-r--r--sys/powerpc/psim/iobus.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/powerpc/psim/iobus.c b/sys/powerpc/psim/iobus.c
index 497ef42d82e6..c572a1fdc12b 100644
--- a/sys/powerpc/psim/iobus.c
+++ b/sys/powerpc/psim/iobus.c
@@ -352,7 +352,8 @@ iobus_adjust_resource(device_t bus, device_t child, int type,
return (bus_generic_rman_adjust_resource(bus, child, type, r,
start, end));
case SYS_RES_IRQ:
- return (bus_adjust_resource(bus, type, r, start, end));
+ return (bus_generic_adjust_resource(bus, child, type, r, start,
+ end));
default:
return (EINVAL);
}