1. 24 2月, 2012 1 次提交
  2. 07 1月, 2012 1 次提交
  3. 10 9月, 2011 1 次提交
    • A
      ARM: cns3xxx: Fix newly introduced warnings in the PCIe code · 7caaf7ef
      Anton Vorontsov 提交于
      commit d5341942 ("PCI: Make the struct
      pci_dev * argument of pci_fixup_irqs const") did not change argument
      of pdev_to_cnspci(), and thus introduced the following warnings:
      
        CHECK   arch/arm/mach-cns3xxx/pcie.c
      pcie.c:177:60: warning: incorrect type in argument 1 (different modifiers)
      pcie.c:177:60:    expected struct pci_dev *dev
      pcie.c:177:60:    got struct pci_dev const *dev
        CC      arch/arm/mach-cns3xxx/pcie.o
      pcie.c: In function 'cns3xxx_pcie_map_irq':
      pcie.c:177: warning: passing argument 1 of 'pdev_to_cnspci' discards qualifiers from pointer target type
      pcie.c:52: note: expected 'struct pci_dev *' but argument is of type 'const struct pci_dev *'
      
      This patch fixes the issue.
      Signed-off-by: NAnton Vorontsov <cbouatmailru@gmail.com>
      7caaf7ef
  4. 22 7月, 2011 1 次提交
    • R
      PCI: Make the struct pci_dev * argument of pci_fixup_irqs const. · d5341942
      Ralf Baechle 提交于
      Aside of the usual motivation for constification,  this function has a
      history of being abused a hook for interrupt and other fixups so I turned
      this function const ages ago in the MIPS code but it should be done
      treewide.
      
      Due to function pointer passing in varous places a few other functions
      had to be constified as well.
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      To: Anton Vorontsov <avorontsov@mvista.com>
      To: Chris Metcalf <cmetcalf@tilera.com>
      To: Colin Cross <ccross@android.com>
      Acked-by: N"David S. Miller" <davem@davemloft.net>
      To: Eric Miao <eric.y.miao@gmail.com>
      To: Erik Gilling <konkers@android.com>
      Acked-by: NGuan Xuetao <gxt@mprc.pku.edu.cn>
      To: "H. Peter Anvin" <hpa@zytor.com>
      To: Imre Kaloz <kaloz@openwrt.org>
      To: Ingo Molnar <mingo@redhat.com>
      To: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
      To: Jesse Barnes <jbarnes@virtuousgeek.org>
      To: Krzysztof Halasa <khc@pm.waw.pl>
      To: Lennert Buytenhek <kernel@wantstofly.org>
      To: Matt Turner <mattst88@gmail.com>
      To: Nicolas Pitre <nico@fluxnic.net>
      To: Olof Johansson <olof@lixom.net>
      Acked-by: NPaul Mundt <lethal@linux-sh.org>
      To: Richard Henderson <rth@twiddle.net>
      To: Russell King <linux@arm.linux.org.uk>
      To: Thomas Gleixner <tglx@linutronix.de>
      Cc: Andrew Morton <akpm@linux-foundation.org>
      Cc: linux-alpha@vger.kernel.org
      Cc: linux-arm-kernel@lists.infradead.org
      Cc: linux-kernel@vger.kernel.org
      Cc: linux-mips@linux-mips.org
      Cc: linux-pci@vger.kernel.org
      Cc: linux-sh@vger.kernel.org
      Cc: linux-tegra@vger.kernel.org
      Cc: sparclinux@vger.kernel.org
      Cc: x86@kernel.org
      Signed-off-by: NJesse Barnes <jbarnes@virtuousgeek.org>
      d5341942
  5. 13 7月, 2011 1 次提交
  6. 30 11月, 2010 1 次提交
    • A
      ARM: cns3xxx: Fix build with CONFIG_PCI=y · 44266416
      Anton Vorontsov 提交于
      commit 6338a6aa ("ARM: 6269/1: Add 'code'
      parameter for hook_fault_code()") breaks CNS3xxx build:
      
        CC      arch/arm/mach-cns3xxx/pcie.o
      pcie.c: In function 'cns3xxx_pcie_init':
      pcie.c:373: warning: passing argument 4 of 'hook_fault_code' makes integer from pointer without a cast
      pcie.c:373: error: too few arguments to function 'hook_fault_code'
      
      This commit fixes the small issue.
      
      Cc: stable@kernel.org [36]
      Signed-off-by: NAnton Vorontsov <cbouatmailru@gmail.com>
      44266416
  7. 08 6月, 2010 1 次提交