Commit d072d73d authored by David S. Miller's avatar David S. Miller

[SPARC64]: Do not log streaming byte hole errors.

They are just a nuissance.
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 55b5c156
......@@ -887,7 +887,7 @@ static irqreturn_t psycho_pcierr_intr_other(struct pci_pbm_info *pbm, int is_pbm
}
csr = psycho_read(csr_reg);
csr_error_bits =
csr & (PSYCHO_PCICTRL_SBH_ERR | PSYCHO_PCICTRL_SERR);
csr & (/*PSYCHO_PCICTRL_SBH_ERR |*/ PSYCHO_PCICTRL_SERR);
if (csr_error_bits) {
/* Clear the errors. */
psycho_write(csr_reg, csr);
......@@ -1076,17 +1076,17 @@ static void __init psycho_register_error_handlers(struct pci_controller_info *p)
* bits for each PBM.
*/
tmp = psycho_read(base + PSYCHO_PCIA_CTRL);
tmp |= (PSYCHO_PCICTRL_SBH_ERR |
PSYCHO_PCICTRL_SERR |
tmp |= (PSYCHO_PCICTRL_SERR |
PSYCHO_PCICTRL_SBH_INT |
PSYCHO_PCICTRL_EEN);
tmp &= ~(PSYCHO_PCICTRL_SBH_ERR);
psycho_write(base + PSYCHO_PCIA_CTRL, tmp);
tmp = psycho_read(base + PSYCHO_PCIB_CTRL);
tmp |= (PSYCHO_PCICTRL_SBH_ERR |
PSYCHO_PCICTRL_SERR |
tmp |= (PSYCHO_PCICTRL_SERR |
PSYCHO_PCICTRL_SBH_INT |
PSYCHO_PCICTRL_EEN);
tmp &= ~(PSYCHO_PCICTRL_SBH_ERR);
psycho_write(base + PSYCHO_PCIB_CTRL, tmp);
}
......
......@@ -886,7 +886,7 @@ static irqreturn_t schizo_pcierr_intr_other(struct pci_pbm_info *pbm)
SCHIZO_PCICTRL_TTO_ERR |
SCHIZO_PCICTRL_RTRY_ERR |
SCHIZO_PCICTRL_DTO_ERR |
SCHIZO_PCICTRL_SBH_ERR |
/*SCHIZO_PCICTRL_SBH_ERR |*/
SCHIZO_PCICTRL_SERR);
if (csr_error_bits) {
/* Clear the errors. */
......@@ -1370,7 +1370,7 @@ static void __init schizo_register_error_handlers(struct pci_controller_info *p)
SCHIZO_PCICTRL_ESLCK |
SCHIZO_PCICTRL_TTO_ERR |
SCHIZO_PCICTRL_RTRY_ERR |
SCHIZO_PCICTRL_SBH_ERR |
/*SCHIZO_PCICTRL_SBH_ERR |*/
SCHIZO_PCICTRL_SERR |
SCHIZO_PCICTRL_SBH_INT |
SCHIZO_PCICTRL_EEN);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment