Skip to content

Commit 33d446d

Browse files
seebedavem330
authored andcommitted
sh_eth: remove unchecked interrupts for RZ/A1
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 hardkernel#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]>
1 parent 8c4799a commit 33d446d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/ethernet/renesas/sh_eth.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ static struct sh_eth_cpu_data r7s72100_data = {
518518

519519
.ecsr_value = ECSR_ICD,
520520
.ecsipr_value = ECSIPR_ICDIP,
521-
.eesipr_value = 0xff7f009f,
521+
.eesipr_value = 0xe77f009f,
522522

523523
.tx_check = EESR_TC1 | EESR_FTC,
524524
.eesr_err_check = EESR_TWB1 | EESR_TWB | EESR_TABT | EESR_RABT |

0 commit comments

Comments
 (0)