Lines Matching defs:as
97 * to masquerade as an EISA device. However, on VLbus machines with
142 /* IO port address setting range as EISA slot number */
309 struct ahc_isa_slot *as;
331 for (as = ahc_isa_all_slots.lh_first; as != NULL;
332 as = as->link.le_next)
333 if (as->bus == device_unit(parent))
339 as = malloc(sizeof(struct ahc_isa_slot), M_DEVBUF, M_WAITOK);
340 as->bus = device_unit(parent);
341 as->slot = AHC_ISA_MIN_SLOT;
342 LIST_INSERT_HEAD(&ahc_isa_all_slots, as, link);
346 for (; as->slot <= AHC_ISA_MAX_SLOT; as->slot++) {
347 if (ahc_isa_match(ia, EISA_SLOT_ADDR(as->slot) +
349 as->slot++; /* next slot to search */