From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Message-Id: <20061219143452.376366000@arndb.de> References: <20061219143240.705255000@arndb.de> Date: Tue, 19 Dec 2006 15:32:43 +0100 From: Arnd Bergmann To: Paul Mackerras Subject: [patch 3/6] cell: Enable spider workarounds on all PCI buses Cc: Arnd Bergmann , linuxppc-dev@ozlabs.org, cbe-oss-dev@ozlabs.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Jens Osterkamp Don't limit spider I/O workarounds to the first two buses. The IBM Cell blade has three of them (one PCI, two PCIe) and we want to handle them all. Signed-off-by: Jens Osterkamp Signed-off-by: Arnd Bergmann Index: linux-2.6/arch/powerpc/platforms/cell/io-workarounds.c =================================================================== --- linux-2.6.orig/arch/powerpc/platforms/cell/io-workarounds.c +++ linux-2.6/arch/powerpc/platforms/cell/io-workarounds.c @@ -37,7 +37,7 @@ */ #define SPIDER_DISABLE_PREFETCH -#define MAX_SPIDERS 2 +#define MAX_SPIDERS 3 static struct spider_pci_bus { void __iomem *regs; --