aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2014-09-12 06:51:10 +0000
committerJohn Crispin <john@openwrt.org>2014-09-12 06:51:10 +0000
commit5b4e53f59f4a298d2f1b5517810381909af59769 (patch)
treeca12f3b336f6187a226da41c6b2bc58c0dec2903
parent9b5f1a4f33103fadf9763e79e321878be05d4f98 (diff)
downloadupstream-5b4e53f59f4a298d2f1b5517810381909af59769.tar.gz
upstream-5b4e53f59f4a298d2f1b5517810381909af59769.tar.bz2
upstream-5b4e53f59f4a298d2f1b5517810381909af59769.zip
atheros: use static keywork for local code
Make PCI IRQ handler and several structures static as suggested by sparse. Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com> SVN-Revision: 42485
-rw-r--r--target/linux/atheros/patches-3.14/105-ar2315_pci.patch6
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/atheros/patches-3.14/105-ar2315_pci.patch b/target/linux/atheros/patches-3.14/105-ar2315_pci.patch
index 77c0e89647..58e8f4b03e 100644
--- a/target/linux/atheros/patches-3.14/105-ar2315_pci.patch
+++ b/target/linux/atheros/patches-3.14/105-ar2315_pci.patch
@@ -108,7 +108,7 @@
+ return config_access(devfn, where, size, &value, 1);
+}
+
-+struct pci_ops ar231x_pci_ops = {
++static struct pci_ops ar231x_pci_ops = {
+ .read = ar231x_pci_read,
+ .write = ar231x_pci_write,
+};
@@ -128,7 +128,7 @@
+ .flags = IORESOURCE_IO,
+};
+
-+struct pci_controller ar231x_pci_controller = {
++static struct pci_controller ar231x_pci_controller = {
+ .pci_ops = &ar231x_pci_ops,
+ .mem_resource = &ar231x_mem_resource,
+ .io_resource = &ar231x_io_resource,
@@ -272,7 +272,7 @@
+ ar231x_write_reg(AR2315_PCI_INT_STATUS, AR2315_PCI_EXT_INT);
+}
+
-+void ar2315_pci_irq(int irq)
++static void ar2315_pci_irq(int irq)
+{
+ if (ar231x_read_reg(AR2315_PCI_INT_STATUS) == AR2315_PCI_ABORT_INT)
+ pci_abort_irq();