예제 #1
0
파일: pci-exynos.c 프로젝트: acton393/linux
static void exynos_pcie_enable_interrupts(struct exynos_pcie *exynos_pcie)
{
	exynos_pcie_enable_irq_pulse(exynos_pcie);

	if (IS_ENABLED(CONFIG_PCI_MSI))
		exynos_pcie_msi_init(exynos_pcie);
}
예제 #2
0
파일: pci-exynos.c 프로젝트: DenisLug/mptcp
static void exynos_pcie_enable_interrupts(struct pcie_port *pp)
{
	exynos_pcie_enable_irq_pulse(pp);

	if (IS_ENABLED(CONFIG_PCI_MSI))
		exynos_pcie_msi_init(pp);
}
예제 #3
0
파일: pci-exynos.c 프로젝트: qkdang/m462
static void exynos_pcie_enable_interrupts(struct pcie_port *pp)
{
	exynos_pcie_enable_irq_pulse(pp);
#ifdef CONFIG_PCI_MSI
	exynos_pcie_msi_init(pp);
#endif
	return;
}