aboutsummaryrefslogtreecommitdiff
path: root/sys/i386/bios
diff options
context:
space:
mode:
authorNate Lawson <njl@FreeBSD.org>2004-03-17 17:50:55 +0000
committerNate Lawson <njl@FreeBSD.org>2004-03-17 17:50:55 +0000
commit5f96beb9e08be2b08309a6b98967246b64272ade (patch)
treea1c3f00139d832c8e80338cfc56c8b1aaffd88ab /sys/i386/bios
parent902aa2e784bda6cef99fb99db6acd4f435a3ff09 (diff)
downloadsrc-5f96beb9e08be2b08309a6b98967246b64272ade.tar.gz
src-5f96beb9e08be2b08309a6b98967246b64272ade.zip
Convert callers to the new bus_alloc_resource_any(9) API.
Submitted by: Mark Santcroos <marks@ripe.net> Reviewed by: imp, dfr, bde
Notes
Notes: svn path=/head/; revision=127135
Diffstat (limited to 'sys/i386/bios')
-rw-r--r--sys/i386/bios/smapi.c7
-rw-r--r--sys/i386/bios/smbios.c7
-rw-r--r--sys/i386/bios/vpd.c7
3 files changed, 9 insertions, 12 deletions
diff --git a/sys/i386/bios/smapi.c b/sys/i386/bios/smapi.c
index 3e9aab8189f7..c4897d1f2c98 100644
--- a/sys/i386/bios/smapi.c
+++ b/sys/i386/bios/smapi.c
@@ -183,8 +183,7 @@ smapi_probe (device_t dev)
error = 0;
rid = 0;
- res = bus_alloc_resource(dev, SYS_RES_MEMORY, &rid,
- 0ul, ~0ul, 1, RF_ACTIVE);
+ res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid, RF_ACTIVE);
if (res == NULL) {
device_printf(dev, "Unable to allocate memory resource.\n");
error = ENOMEM;
@@ -214,8 +213,8 @@ smapi_attach (device_t dev)
sc->dev = dev;
sc->rid = 0;
- sc->res = bus_alloc_resource(dev, SYS_RES_MEMORY, &sc->rid,
- 0ul, ~0ul, 1, RF_ACTIVE);
+ sc->res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &sc->rid,
+ RF_ACTIVE);
if (sc->res == NULL) {
device_printf(dev, "Unable to allocate memory resource.\n");
error = ENOMEM;
diff --git a/sys/i386/bios/smbios.c b/sys/i386/bios/smbios.c
index 9bf433e8be9f..cef10f39b0c9 100644
--- a/sys/i386/bios/smbios.c
+++ b/sys/i386/bios/smbios.c
@@ -130,8 +130,7 @@ smbios_probe (device_t dev)
error = 0;
rid = 0;
- res = bus_alloc_resource(dev, SYS_RES_MEMORY, &rid,
- 0ul, ~0ul, 1, RF_ACTIVE);
+ res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid, RF_ACTIVE);
if (res == NULL) {
device_printf(dev, "Unable to allocate memory resource.\n");
error = ENOMEM;
@@ -161,8 +160,8 @@ smbios_attach (device_t dev)
sc->dev = dev;
sc->rid = 0;
- sc->res = bus_alloc_resource(dev, SYS_RES_MEMORY, &sc->rid,
- 0ul, ~0ul, 1, RF_ACTIVE);
+ sc->res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &sc->rid,
+ RF_ACTIVE);
if (sc->res == NULL) {
device_printf(dev, "Unable to allocate memory resource.\n");
error = ENOMEM;
diff --git a/sys/i386/bios/vpd.c b/sys/i386/bios/vpd.c
index 74395c2e2740..b78a3033e4e8 100644
--- a/sys/i386/bios/vpd.c
+++ b/sys/i386/bios/vpd.c
@@ -145,8 +145,7 @@ vpd_probe (device_t dev)
error = 0;
rid = 0;
- res = bus_alloc_resource(dev, SYS_RES_MEMORY, &rid,
- 0ul, ~0ul, 1, RF_ACTIVE);
+ res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid, RF_ACTIVE);
if (res == NULL) {
device_printf(dev, "Unable to allocate memory resource.\n");
error = ENOMEM;
@@ -177,8 +176,8 @@ vpd_attach (device_t dev)
sc->dev = dev;
sc->rid = 0;
- sc->res = bus_alloc_resource(dev, SYS_RES_MEMORY, &sc->rid,
- 0ul, ~0ul, 1, RF_ACTIVE);
+ sc->res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &sc->rid,
+ RF_ACTIVE);
if (sc->res == NULL) {
device_printf(dev, "Unable to allocate memory resource.\n");
error = ENOMEM;