From: Stephen Rothwell Date: Thu, 6 Dec 2007 14:48:14 +0000 (+1100) Subject: [POWERPC] iSeries: Cleanup PCI retry code a little X-Git-Tag: upstream/snapshot3+hdmi~28312^2~338 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b9b1812cad14bf921409a76a444a015d22774639;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git [POWERPC] iSeries: Cleanup PCI retry code a little Signed-off-by: Stephen Rothwell Signed-off-by: Paul Mackerras --- diff --git a/arch/powerpc/platforms/iseries/pci.c b/arch/powerpc/platforms/iseries/pci.c index e4e6ae0..8ef3226 100644 --- a/arch/powerpc/platforms/iseries/pci.c +++ b/arch/powerpc/platforms/iseries/pci.c @@ -45,8 +45,8 @@ #include "pci.h" #include "call_pci.h" -static int Pci_Retry_Max = 3; /* Only retry 3 times */ -static int Pci_Error_Flag = 1; /* Set Retry Error on. */ +#define PCI_RETRY_MAX 3 +static int limit_pci_retries = 1; /* Set Retry Error on. */ /* * Table defines @@ -338,8 +338,8 @@ static int CheckReturnCode(char *TextHdr, struct device_node *DevNode, * Bump the retry and check for retry count exceeded. * If, Exceeded, panic the system. */ - if (((*retry) > Pci_Retry_Max) && - (Pci_Error_Flag > 0)) { + if (((*retry) > PCI_RETRY_MAX) && + (limit_pci_retries > 0)) { mf_display_src(0xB6000103); panic_timeout = 0; panic("PCI: Hardware I/O Error, SRC B6000103, "