diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-07-10 17:33:00 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-07-10 17:33:00 +0100 |
commit | 19df0d1169b3ddcc84933794d1401aaafe2f0000 (patch) | |
tree | 3548b6899e921056de3aaf76840fe4bb8863e1ac /arch/mips/pci/pci-bcm1480.c | |
parent | 6b5bf509317c013ea0a7c166affc1d4631720d85 (diff) | |
download | kernel-crypto-19df0d1169b3ddcc84933794d1401aaafe2f0000.tar.gz kernel-crypto-19df0d1169b3ddcc84933794d1401aaafe2f0000.tar.xz kernel-crypto-19df0d1169b3ddcc84933794d1401aaafe2f0000.zip |
[MIPS] PCI: Make dev pointer argument of pcibios_map_irq const.
This is to break the code of people who think they are supposed to scribble
into the pci device structure - it's off limits.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/pci/pci-bcm1480.c')
-rw-r--r-- | arch/mips/pci/pci-bcm1480.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/mips/pci/pci-bcm1480.c b/arch/mips/pci/pci-bcm1480.c index d7b9e1349f6..2b4e30c7d10 100644 --- a/arch/mips/pci/pci-bcm1480.c +++ b/arch/mips/pci/pci-bcm1480.c @@ -74,8 +74,9 @@ static inline void WRITECFG32(u32 addr, u32 data) *(u32 *)(cfg_space + (addr & ~3)) = data; } -int pcibios_map_irq(struct pci_dev *dev, u8 slot, u8 pin) +int pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) { + This is b0rked. return dev->irq; } |