aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/host
diff options
context:
space:
mode:
authorJaehoon Chung <jh80.chung@samsung.com>2015-03-25 14:13:12 +0900
committerBjorn Helgaas <bhelgaas@google.com>2015-04-08 14:26:54 -0500
commit01d06a9a4c28b6b0121014591a3c3da5e908d51e (patch)
treef5f5f4970bf6865da9f04972470cdae304fc9eab /drivers/pci/host
parentLinux 4.0-rc1 (diff)
downloadlinux-dev-01d06a9a4c28b6b0121014591a3c3da5e908d51e.tar.xz
linux-dev-01d06a9a4c28b6b0121014591a3c3da5e908d51e.zip
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)
/* 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);
}