projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c517d83
)
PCI: exynos: Fix INTx enablement statement termination error
author
Jaehoon Chung
<jh80.chung@samsung.com>
Wed, 25 Mar 2015 05:13:12 +0000
(14:13 +0900)
committer
Bjorn Helgaas
<bhelgaas@google.com>
Wed, 8 Apr 2015 19:26:54 +0000
(14:26 -0500)
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>
drivers/pci/host/pci-exynos.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/pci/host/pci-exynos.c
b/drivers/pci/host/pci-exynos.c
index d202b37c369847afcf5bd49087bfbe20d13bba60..c139237e0e523cd9d9e36c9a9d7ce20b8a59f87f 100644
(file)
--- 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);
}