Lines Matching defs:ice
417 struct isa_config_entry *ice;
425 TAILQ_FOREACH(ice, &idev->id_configs, ice_link) {
427 if (!isa_find_memory(child, &ice->ice_config, cfg))
430 if (!isa_find_port(child, &ice->ice_config, cfg))
433 if (!isa_find_irq(child, &ice->ice_config, cfg))
436 if (!isa_find_drq(child, &ice->ice_config, cfg))
977 struct isa_config_entry *newice, *ice;
979 newice = malloc(sizeof *ice, M_DEVBUF, M_NOWAIT);
986 TAILQ_FOREACH(ice, &idev->id_configs, ice_link) {
987 if (ice->ice_priority > priority)
990 if (ice)
991 TAILQ_INSERT_BEFORE(ice, newice, ice_link);