aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/host
diff options
context:
space:
mode:
authorJaehoon Chung <jh80.chung@samsung.com>2015-03-25 01:13:12 -0400
committerBjorn Helgaas <bhelgaas@google.com>2015-04-08 15:26:54 -0400
commit01d06a9a4c28b6b0121014591a3c3da5e908d51e (patch)
treef5f5f4970bf6865da9f04972470cdae304fc9eab /drivers/pci/host
parentc517d838eb7d07bbe9507871fab3931deccff539 (diff)
PCI: exynos: Fix INTx enablement statement termination error
Use a semicolon, not a comma, to terminate a statement. Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/host')
-rw-r--r--drivers/pci/host/pci-exynos.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/host/pci-exynos.c b/drivers/pci/host/pci-exynos.c
index d202b37c3698..c139237e0e52 100644
--- a/drivers/pci/host/pci-exynos.c
+++ b/drivers/pci/host/pci-exynos.c
@@ -396,7 +396,7 @@ static void exynos_pcie_enable_irq_pulse(struct pcie_port *pp)
396 396
397 /* enable INTX interrupt */ 397 /* enable INTX interrupt */
398 val = IRQ_INTA_ASSERT | IRQ_INTB_ASSERT | 398 val = IRQ_INTA_ASSERT | IRQ_INTB_ASSERT |
399 IRQ_INTC_ASSERT | IRQ_INTD_ASSERT, 399 IRQ_INTC_ASSERT | IRQ_INTD_ASSERT;
400 exynos_elb_writel(exynos_pcie, val, PCIE_IRQ_EN_PULSE); 400 exynos_elb_writel(exynos_pcie, val, PCIE_IRQ_EN_PULSE);
401} 401}
402 402