summaryrefslogtreecommitdiffstats
path: root/sys/isa/vga_isa.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/isa/vga_isa.c')
-rw-r--r--sys/isa/vga_isa.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/isa/vga_isa.c b/sys/isa/vga_isa.c
index bf7f9e0..455760d 100644
--- a/sys/isa/vga_isa.c
+++ b/sys/isa/vga_isa.c
@@ -195,11 +195,11 @@ isavga_attach(device_t dev)
sc = device_get_softc(dev);
rid = 0;
- bus_alloc_resource(dev, SYS_RES_IOPORT, &rid,
- 0, ~0, 0, RF_ACTIVE | RF_SHAREABLE);
+ bus_alloc_resource_any(dev, SYS_RES_IOPORT, &rid,
+ RF_ACTIVE | RF_SHAREABLE);
rid = 0;
- bus_alloc_resource(dev, SYS_RES_MEMORY, &rid,
- 0, ~0, 0, RF_ACTIVE | RF_SHAREABLE);
+ bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid,
+ RF_ACTIVE | RF_SHAREABLE);
error = vga_attach_unit(unit, sc, device_get_flags(dev));
if (error)
OpenPOWER on IntegriCloud