Bump up the limit for when to print the resources for a given resource
manager in hex vs decimal to 1000 from 100 so that IRQs are printed in decimal. MFC after: 3 days
This commit is contained in:
parent
f96314870d
commit
a0d5330ec0
@ -65,7 +65,7 @@ print_resource(struct devinfo_res *res)
|
||||
int hexmode;
|
||||
|
||||
rman = devinfo_handle_to_rman(res->dr_rman);
|
||||
hexmode = (rman->dm_size > 100) || (rman->dm_size == 0);
|
||||
hexmode = (rman->dm_size > 1000) || (rman->dm_size == 0);
|
||||
printf(hexmode ? "0x%lx" : "%lu", res->dr_start);
|
||||
if (res->dr_size > 1)
|
||||
printf(hexmode ? "-0x%lx" : "-%lu",
|
||||
|
Loading…
x
Reference in New Issue
Block a user