summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/isa/isahint.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/sys/isa/isahint.c b/sys/isa/isahint.c
index 65a0d5c..ffa1266 100644
--- a/sys/isa/isahint.c
+++ b/sys/isa/isahint.c
@@ -95,21 +95,15 @@ isahint_identify(driver_t *driver, device_t parent)
*/
sprintf(buf, "isa%d", device_get_unit(parent));
i = 0;
- while ((resource_find_match(&i, &dname, &dunit, "at", buf)) == 0) {
- if (strcmp(dname, "atkbd") == 0)
- continue; /* old GENERIC kludge */
+ while ((resource_find_match(&i, &dname, &dunit, "at", buf)) == 0)
isahint_add_device(parent, dname, dunit);
- }
/*
* and isa?
*/
i = 0;
- while ((resource_find_match(&i, &dname, &dunit, "at", "isa")) == 0) {
- if (strcmp(dname, "atkbd") == 0)
- continue; /* old GENERIC kludge */
+ while ((resource_find_match(&i, &dname, &dunit, "at", "isa")) == 0)
isahint_add_device(parent, dname, dunit);
- }
}
static device_method_t isahint_methods[] = {
OpenPOWER on IntegriCloud