diff options
author | Jaehoon Chung <jh80.chung@samsung.com> | 2015-03-25 08:13:12 +0300 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2015-04-08 22:26:54 +0300 |
commit | 01d06a9a4c28b6b0121014591a3c3da5e908d51e (patch) | |
tree | f5f5f4970bf6865da9f04972470cdae304fc9eab /drivers/pci/host | |
parent | c517d838eb7d07bbe9507871fab3931deccff539 (diff) | |
download | linux-01d06a9a4c28b6b0121014591a3c3da5e908d51e.tar.xz |
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.c | 2 |
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); } |