[SPARC64]: Fix IRQ retry interval timer value on sparc64 PCI controllers.

Use '5' instead of 'infinity'.

Signed-off-by: David S. Miller <davem@davemloft.net>

+2 -5
+1 -2
arch/sparc64/kernel/pci_psycho.c
··· 1303 { 1304 u64 tmp; 1305 1306 - /* PROM sets the IRQ retry value too low, increase it. */ 1307 - psycho_write(p->pbm_A.controller_regs + PSYCHO_IRQ_RETRY, 0xff); 1308 1309 /* Enable arbiter for all PCI slots. */ 1310 tmp = psycho_read(p->pbm_A.controller_regs + PSYCHO_PCIA_CTRL);
··· 1303 { 1304 u64 tmp; 1305 1306 + psycho_write(p->pbm_A.controller_regs + PSYCHO_IRQ_RETRY, 5); 1307 1308 /* Enable arbiter for all PCI slots. */ 1309 tmp = psycho_read(p->pbm_A.controller_regs + PSYCHO_PCIA_CTRL);
+1 -3
arch/sparc64/kernel/pci_schizo.c
··· 1936 { 1937 u64 tmp; 1938 1939 - /* Set IRQ retry to infinity. */ 1940 - schizo_write(pbm->pbm_regs + SCHIZO_PCI_IRQ_RETRY, 1941 - SCHIZO_IRQ_RETRY_INF); 1942 1943 tmp = schizo_read(pbm->pbm_regs + SCHIZO_PCI_CTRL); 1944
··· 1936 { 1937 u64 tmp; 1938 1939 + schizo_write(pbm->pbm_regs + SCHIZO_PCI_IRQ_RETRY, 5); 1940 1941 tmp = schizo_read(pbm->pbm_regs + SCHIZO_PCI_CTRL); 1942