mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
[MIPS] rbtx4938: Fix warnings
linux/arch/mips/pci/fixup-tx4938.c:21:5: warning: symbol 'pci_get_irq' was not declared. Should it be static? linux/arch/mips/pci/fixup-tx4938.c:76: warning: passing argument 1 of 'pci_get_irq' discards qualifiers from pointer target type Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
ade299d899
commit
004561d3af
@ -18,7 +18,7 @@
|
||||
|
||||
extern struct pci_controller tx4938_pci_controller[];
|
||||
|
||||
int pci_get_irq(struct pci_dev *dev, int pin)
|
||||
static int pci_get_irq(const struct pci_dev *dev, int pin)
|
||||
{
|
||||
int irq = pin;
|
||||
u8 slot = PCI_SLOT(dev->devfn);
|
||||
|
Loading…
Reference in New Issue
Block a user