projects
/
profile
/
ivi
/
kernel-x86-ivi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
00dc5ce
)
MIPS: Malta: Delete duplicate PCI fixup.
author
Ralf Baechle
<ralf@linux-mips.org>
Fri, 17 Aug 2012 08:45:27 +0000
(10:45 +0200)
committer
Ralf Baechle
<ralf@linux-mips.org>
Fri, 17 Aug 2012 08:57:29 +0000
(10:57 +0200)
2ec8663f9c03a96f2c328c7c483603c31d62ad37
(lmo) rsp.
497e5ff03f58583ada469db8a1aa34eced9dd63e
(kernel.org) [MIPS: Malta: Move
PIIX4 PCI fixup to where it belongs.] attempted to move this PCI fixup
but really only added it at it's new location without deleting the old
instance.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/mti-malta/malta-pci.c
patch
|
blob
|
history
diff --git
a/arch/mips/mti-malta/malta-pci.c
b/arch/mips/mti-malta/malta-pci.c
index 284dea54faf5a9f629e9d2cab18121cc5db328c6..2147cb34e705a2dca85355aa529c03ca878744a6 100644
(file)
--- a/
arch/mips/mti-malta/malta-pci.c
+++ b/
arch/mips/mti-malta/malta-pci.c
@@
-252,16
+252,3
@@
void __init mips_pcibios_init(void)
register_pci_controller(controller);
}
-
-/* Enable PCI 2.1 compatibility in PIIX4 */
-static void __devinit quirk_dlcsetup(struct pci_dev *dev)
-{
- u8 odlc, ndlc;
- (void) pci_read_config_byte(dev, 0x82, &odlc);
- /* Enable passive releases and delayed transaction */
- ndlc = odlc | 7;
- (void) pci_write_config_byte(dev, 0x82, ndlc);
-}
-
-DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_0,
- quirk_dlcsetup);