summaryrefslogtreecommitdiffstats
path: root/sys/dev/fdt/fdtbus.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/fdt/fdtbus.c')
-rw-r--r--sys/dev/fdt/fdtbus.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/fdt/fdtbus.c b/sys/dev/fdt/fdtbus.c
index 5390dd0..f113b8e 100644
--- a/sys/dev/fdt/fdtbus.c
+++ b/sys/dev/fdt/fdtbus.c
@@ -158,9 +158,7 @@ fdtbus_probe(device_t dev)
debugf("%s(dev=%p); pass=%u\n", __func__, dev, bus_current_pass);
- device_set_desc(dev, "FDT main bus");
- if (!bootverbose)
- device_quiet(dev);
+ device_set_desc(dev, "Flattened Device Tree");
return (BUS_PROBE_NOWILDCARD);
}
@@ -182,7 +180,7 @@ fdtbus_attach(device_t dev)
* IRQ rman.
*/
start = 0;
- end = FDT_INTR_MAX - 1;
+ end = ~0;
sc->sc_irq.rm_start = start;
sc->sc_irq.rm_end = end;
sc->sc_irq.rm_type = RMAN_ARRAY;
OpenPOWER on IntegriCloud