aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaehoon Chung <jh80.chung@samsung.com>2015-03-25 14:13:12 +0900
committerAlex Shi <alex.shi@linaro.org>2015-10-26 14:10:30 +0800
commitf1b76cbc38c14b2877da474d1b6b3662c44cc867 (patch)
tree89d6321eb8d1aff0a27245eacece1770060b86f4
parent2ea52b1ab34e318edd9817e20d2ce80f24497b8f (diff)
PCI: exynos: Fix INTx enablement statement termination errorv3.18/topic/pcie/of-iommu
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> (cherry picked from commit 01d06a9a4c28b6b0121014591a3c3da5e908d51e) Signed-off-by: Alex Shi <alex.shi@linaro.org>
-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 c5d0ca384502..2e9b36dda916 100644
--- a/drivers/pci/host/pci-exynos.c
+++ b/drivers/pci/host/pci-exynos.c
@@ -398,7 +398,7 @@ static void exynos_pcie_enable_irq_pulse(struct pcie_port *pp)
/* enable INTX interrupt */
val = IRQ_INTA_ASSERT | IRQ_INTB_ASSERT |
- IRQ_INTC_ASSERT | IRQ_INTD_ASSERT,
+ IRQ_INTC_ASSERT | IRQ_INTD_ASSERT;
exynos_elb_writel(exynos_pcie, val, PCIE_IRQ_EN_PULSE);
return;
}