summaryrefslogtreecommitdiffstats
path: root/sys/dev/atkbdc/atkbd.c
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2003-07-02 16:09:02 +0000
committerjhb <jhb@FreeBSD.org>2003-07-02 16:09:02 +0000
commit17958a749f60b50092d0ae5d6171bdc924cbed02 (patch)
tree24843831a3541cd5733aaad746e1a57206e1e21f /sys/dev/atkbdc/atkbd.c
parentea0bd1523805444400e26e89587d5f1a933ff7dd (diff)
downloadFreeBSD-src-17958a749f60b50092d0ae5d6171bdc924cbed02.zip
FreeBSD-src-17958a749f60b50092d0ae5d6171bdc924cbed02.tar.gz
- Use the new resource_disabled() helper function to see if devices are
disabled. - Change the apm driver to match the acpi driver's behavior by checking to see if the device is disabled in the identify routine instead of in the probe routine. This way if the device is disabled it is never created. Note that a few places (ips(4), Alpha SMP) used "disable" instead of "disabled" for their hint names, and these hints must be changed to "disabled". If this is a big problem, resource_disabled() can always be changed to honor both names.
Diffstat (limited to 'sys/dev/atkbdc/atkbd.c')
-rw-r--r--sys/dev/atkbdc/atkbd.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/atkbdc/atkbd.c b/sys/dev/atkbdc/atkbd.c
index edf6489..569f14b 100644
--- a/sys/dev/atkbdc/atkbd.c
+++ b/sys/dev/atkbdc/atkbd.c
@@ -277,8 +277,7 @@ atkbd_configure(int flags)
atkbdc_configure();
/* if the driver is disabled, unregister the keyboard if any */
- if ((resource_int_value("atkbd", ATKBD_DEFAULT, "disabled", &i) == 0)
- && i != 0) {
+ if (resource_disabled("atkbd", ATKBD_DEFAULT)) {
i = kbd_find_keyboard(ATKBD_DRIVER_NAME, ATKBD_DEFAULT);
if (i >= 0) {
kbd = kbd_get_keyboard(i);
OpenPOWER on IntegriCloud