Skip to content

Commit a5e8cba

Browse files
seebeLuis Henriques
authored andcommitted
sh_eth: remove unchecked interrupts for RZ/A1
BugLink: http://bugs.launchpad.net/bugs/1650607 [ Upstream commit 33d446d ] When streaming a lot of data and the RZ/A1 can't keep up, some status bits will get set that are not being checked or cleared which cause the following messages and the Ethernet driver to stop working. This patch fixes that issue. irq 21: nobody cared (try booting with the "irqpoll" option) handlers: [<c036b71c>] sh_eth_interrupt Disabling IRQ #21 Fixes: db89347 ("sh_eth: Add support for r7s72100") Signed-off-by: Chris Brandt <[email protected]> Acked-by: Sergei Shtylyov <[email protected]> Signed-off-by: David S. Miller <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]> Signed-off-by: Tim Gardner <[email protected]> Signed-off-by: Luis Henriques <[email protected]>
1 parent 7103418 commit a5e8cba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/ethernet/renesas/sh_eth.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ static struct sh_eth_cpu_data r7s72100_data = {
832832

833833
.ecsr_value = ECSR_ICD,
834834
.ecsipr_value = ECSIPR_ICDIP,
835-
.eesipr_value = 0xff7f009f,
835+
.eesipr_value = 0xe77f009f,
836836

837837
.tx_check = EESR_TC1 | EESR_FTC,
838838
.eesr_err_check = EESR_TWB1 | EESR_TWB | EESR_TABT | EESR_RABT |

0 commit comments

Comments
 (0)