Browse Source

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>
Jaehoon Chung 10 years ago
parent
commit
01d06a9a4c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/pci/host/pci-exynos.c

+ 1 - 1
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);
 }