Lines Matching refs:ret
238 int ret; in pciehp_check_link_active() local
240 ret = pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status); in pciehp_check_link_active()
241 if (ret == PCIBIOS_DEVICE_NOT_FOUND || lnk_status == (u16)~0) in pciehp_check_link_active()
244 ret = !!(lnk_status & PCI_EXP_LNKSTA_DLLLA); in pciehp_check_link_active()
247 return ret; in pciehp_check_link_active()
445 int ret; in pciehp_card_present() local
447 ret = pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status); in pciehp_card_present()
448 if (ret == PCIBIOS_DEVICE_NOT_FOUND || slot_status == (u16)~0) in pciehp_card_present()
468 int ret; in pciehp_card_present_or_link_active() local
470 ret = pciehp_card_present(ctrl); in pciehp_card_present_or_link_active()
471 if (ret) in pciehp_card_present_or_link_active()
472 return ret; in pciehp_card_present_or_link_active()
703 irqreturn_t ret; in pciehp_ist() local
711 ret = pciehp_isr(irq, dev_id); in pciehp_ist()
713 if (ret != IRQ_WAKE_THREAD) in pciehp_ist()
720 ret = IRQ_NONE; in pciehp_ist()
759 ret = IRQ_HANDLED; in pciehp_ist()
764 return ret; in pciehp_ist()