diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2012-06-03 23:42:04 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2012-07-23 08:55:55 -0400 |
commit | f7257d38ebb1bd3b8f80662c67ec7d502ac67421 (patch) | |
tree | e45a74f9686d2d27be0fd50794455a971746074d /arch/mips/txx9/generic | |
parent | a6196bab646537f594ef269bf9e1c92fe0e165a6 (diff) |
MIPS: PCI: Add missing __devinit attributions to fixup functions.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/txx9/generic')
-rw-r--r-- | arch/mips/txx9/generic/pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/txx9/generic/pci.c b/arch/mips/txx9/generic/pci.c index 64eb71b15280..bab4953c292c 100644 --- a/arch/mips/txx9/generic/pci.c +++ b/arch/mips/txx9/generic/pci.c | |||
@@ -304,7 +304,7 @@ static void __devinit quirk_slc90e66_bridge(struct pci_dev *dev) | |||
304 | smsc_fdc37m81x_config_end(); | 304 | smsc_fdc37m81x_config_end(); |
305 | } | 305 | } |
306 | 306 | ||
307 | static void quirk_slc90e66_ide(struct pci_dev *dev) | 307 | static void __devinit quirk_slc90e66_ide(struct pci_dev *dev) |
308 | { | 308 | { |
309 | unsigned char dat; | 309 | unsigned char dat; |
310 | int regs[2] = {0x41, 0x43}; | 310 | int regs[2] = {0x41, 0x43}; |
@@ -339,7 +339,7 @@ static void quirk_slc90e66_ide(struct pci_dev *dev) | |||
339 | } | 339 | } |
340 | #endif /* CONFIG_TOSHIBA_FPCIB0 */ | 340 | #endif /* CONFIG_TOSHIBA_FPCIB0 */ |
341 | 341 | ||
342 | static void tc35815_fixup(struct pci_dev *dev) | 342 | static void __devinit tc35815_fixup(struct pci_dev *dev) |
343 | { | 343 | { |
344 | /* This device may have PM registers but not they are not suported. */ | 344 | /* This device may have PM registers but not they are not suported. */ |
345 | if (dev->pm_cap) { | 345 | if (dev->pm_cap) { |
@@ -348,7 +348,7 @@ static void tc35815_fixup(struct pci_dev *dev) | |||
348 | } | 348 | } |
349 | } | 349 | } |
350 | 350 | ||
351 | static void final_fixup(struct pci_dev *dev) | 351 | static void __devinit final_fixup(struct pci_dev *dev) |
352 | { | 352 | { |
353 | unsigned char bist; | 353 | unsigned char bist; |
354 | 354 | ||