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-11-07 21:52:53 +0800
commit6e5f2cec34bf09a4725f216fec8b62e08b0f97b8 (patch)
tree8b22dd48add36f028fadd0486076862ccc6cbdf4
parent29d983aa9aacb30ab2149dfbd04aea004413f9b8 (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> (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 a95b20dbc3aa..9d768818a415 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;
}