Skip to content

Commit

Permalink
PCI: exynos: Fix INTx enablement statement termination error
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jaehoon Chung authored and Bjorn Helgaas committed Apr 8, 2015
1 parent c517d83 commit 01d06a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/pci/host/pci-exynos.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 01d06a9

Please sign in to comment.