Lines Matching refs:rc
153 int rc; in sti_local_printf() local
159 rc = vprintf(fmt, ap); in sti_local_printf()
163 return rc; in sti_local_printf()
219 int rc; in sti_check_rom() local
236 rc = bus_space_map(pa->pa_memt, PCI_ROM_ADDR(address), romsize, in sti_check_rom()
238 if (rc != 0) { in sti_check_rom()
240 sc->sc_dev.dv_xname, rc); in sti_check_rom()
252 rc = sti_pcirom_walk(sc, pa->pa_memt, romh, romsize, sti_pcirom_check, in sti_check_rom()
256 if (rc == 0) { in sti_check_rom()
259 rc = ENOEXEC; in sti_check_rom()
282 rc = sti_readbar(sc, pa, i, region_bars[i]); in sti_check_rom()
283 if (rc != 0) in sti_check_rom()
304 rc = bus_space_map(pa->pa_memt, PCI_ROM_ADDR(address) + offs, in sti_check_rom()
306 if (rc != 0) { in sti_check_rom()
308 sc->sc_dev.dv_xname, rc); in sti_check_rom()
329 return rc; in sti_check_rom()
342 int rc; in sti_readbar() local
358 rc = pci_mapreg_info(pa->pa_pc, pa->pa_tag, bar, type, &addr, &size, in sti_readbar()
360 if (rc != 0) { in sti_readbar()
363 return rc; in sti_readbar()
464 int rc = 0; in sti_pcirom_walk() local
487 rc = EINVAL; in sti_pcirom_walk()
506 rc = EINVAL; in sti_pcirom_walk()
531 rc = EINVAL; in sti_pcirom_walk()
549 rc = EINVAL; in sti_pcirom_walk()
568 rc = EINVAL; in sti_pcirom_walk()
578 rc = (*cb)(romt, romh, offs, &ds, cbarg); in sti_pcirom_walk()
579 if (rc != 0) in sti_pcirom_walk()
591 return rc; in sti_pcirom_walk()