summaryrefslogtreecommitdiffstats
path: root/sys/dev/atkbdc/atkbd.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/atkbdc/atkbd.c')
-rw-r--r--sys/dev/atkbdc/atkbd.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/sys/dev/atkbdc/atkbd.c b/sys/dev/atkbdc/atkbd.c
index eedc469..9987787 100644
--- a/sys/dev/atkbdc/atkbd.c
+++ b/sys/dev/atkbdc/atkbd.c
@@ -282,11 +282,12 @@ atkbd_configure(int flags)
int arg[2];
int i;
- /* probe the keyboard controller */
- atkbdc_configure();
-
- /* if the driver is disabled, unregister the keyboard if any */
- if (resource_disabled("atkbd", ATKBD_DEFAULT)) {
+ /*
+ * Probe the keyboard controller, if not present or if the driver
+ * is disabled, unregister the keyboard if any.
+ */
+ if (atkbdc_configure() != 0 ||
+ 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