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: d7c16b3334 powerpc psim: Use bus_generic_rman_*
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user