Home | History | Annotate | Download | only in dev

Lines Matching defs:slot

99 	int slot, rv;
111 for (slot = 0; slot < SGC_NSLOTS; slot++) {
112 pa = sgc_slottopa(slot);
114 aprint_error_dev(self, "can't map slot %d\n", slot);
124 DPRINTF(("%s: no valid device at slot %d\n",
125 device_xname(self), slot));
131 saa.saa_slot = slot;
145 aprint_normal(" slot %d", saa->saa_slot);
150 * Convert a slot number to a system physical address.
154 sgc_slottopa(int slot)
158 if (slot < 0 || slot >= SGC_NSLOTS)
161 rval = SGC_BASE + (slot * SGC_DEVSIZE);