- Linux 2.6.32.17-rc1
- Comment out patches merged upstream:
linux-2.6-ext4-quota-metadata-reservation.patch
ext4-issue-discard-operation-before-releasing-blocks.patch
mac80211-do-not-wipe-out-old-supported-rates.patch
mac80211-fix-supported-rates-IE-if-AP-doesnt-give-us-its-rates.patch
iwlwifi-cancel-scan-watchdog-in-iwl_bg_abort_scan.patch
sched-fix-over-scheduling-bug.patch
ethtool-fix-buffer-overflow.patch
cifs-fix-malicious-redirect-problem-in-the-dns-lookup-code.patch
usb-obey-the-sysfs-power-wakeup-setting.patch
- Revert -stable patches we already have:
drm-i915-enable-low-power-render-writes-on-gen3-hardware.patch
drm-i915-define-mi_arb_state-bits.patch
- Comment out due to conflicts with -stable:
ssb_check_for_sprom.patch
15 lines
551 B
Diff
15 lines
551 B
Diff
--- linux/arch/powerpc/platforms/powermac/pci.c~ 2008-03-22 19:08:07.000000000 +0000
|
|
+++ linux/arch/powerpc/platforms/powermac/pci.c 2008-03-23 09:10:46.000000000 +0000
|
|
@@ -1271,6 +1271,12 @@ void pmac_pci_fixup_pciata(struct pci_de
|
|
}
|
|
}
|
|
DECLARE_PCI_FIXUP_EARLY(PCI_ANY_ID, PCI_ANY_ID, pmac_pci_fixup_pciata);
|
|
+#else /* CONFIG_PPC64 */
|
|
+static void __devinit imac_transparent_bridge(struct pci_dev *dev)
|
|
+{
|
|
+ dev->transparent = 1;
|
|
+}
|
|
+DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_APPLE, 0x005b, imac_transparent_bridge);
|
|
#endif /* CONFIG_PPC32 */
|
|
|
|
/*
|