mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 01:40:53 +07:00
Blackfin: SIC: fix off-by-one error in loop
Make sure we include EMAC_SYSTAT when showing errors. Signed-off-by: Michael Hennerich <michael.hennerich@analog.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
948ca1a788
commit
bedeea6e3b
@ -511,7 +511,7 @@ static void bfin_demux_mac_status_irq(unsigned int int_err_irq,
|
|||||||
int i, irq = 0;
|
int i, irq = 0;
|
||||||
u32 status = bfin_read_EMAC_SYSTAT();
|
u32 status = bfin_read_EMAC_SYSTAT();
|
||||||
|
|
||||||
for (i = 0; i < (IRQ_MAC_STMDONE - IRQ_MAC_PHYINT); i++)
|
for (i = 0; i <= (IRQ_MAC_STMDONE - IRQ_MAC_PHYINT); i++)
|
||||||
if (status & (1L << i)) {
|
if (status & (1L << i)) {
|
||||||
irq = IRQ_MAC_PHYINT + i;
|
irq = IRQ_MAC_PHYINT + i;
|
||||||
break;
|
break;
|
||||||
@ -529,8 +529,9 @@ static void bfin_demux_mac_status_irq(unsigned int int_err_irq,
|
|||||||
} else
|
} else
|
||||||
printk(KERN_ERR
|
printk(KERN_ERR
|
||||||
"%s : %s : LINE %d :\nIRQ ?: MAC ERROR"
|
"%s : %s : LINE %d :\nIRQ ?: MAC ERROR"
|
||||||
" INTERRUPT ASSERTED BUT NO SOURCE FOUND\n",
|
" INTERRUPT ASSERTED BUT NO SOURCE FOUND"
|
||||||
__func__, __FILE__, __LINE__);
|
"(EMAC_SYSTAT=0x%X)\n",
|
||||||
|
__func__, __FILE__, __LINE__, status);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user