atheros: use static keywork for local code
authorJohn Crispin <john@openwrt.org>
Fri, 12 Sep 2014 06:51:10 +0000 (06:51 +0000)
committerJohn Crispin <john@openwrt.org>
Fri, 12 Sep 2014 06:51:10 +0000 (06:51 +0000)
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

target/linux/atheros/patches-3.14/105-ar2315_pci.patch

index 77c0e896471249cf500ca4f9931084ac06c0b57c..58e8f4b03e5ad6e6145d99f7f185bbb5f6e77a8b 100644 (file)
 +      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,
 +};
 +      .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,
 +      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();