net/cadence/macb: fix bug/typo in extracting gem_irq_read_clear bit
Signed-off-by: Jongsung Kim <neidhard.kim@lge.com> Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b78ba72cda
commit
01276ed242
1 changed files with 1 additions and 1 deletions
|
@ -1292,7 +1292,7 @@ static void macb_configure_dma(struct macb *bp)
|
||||||
static void macb_configure_caps(struct macb *bp)
|
static void macb_configure_caps(struct macb *bp)
|
||||||
{
|
{
|
||||||
if (macb_is_gem(bp)) {
|
if (macb_is_gem(bp)) {
|
||||||
if (GEM_BF(IRQCOR, gem_readl(bp, DCFG1)) == 0)
|
if (GEM_BFEXT(IRQCOR, gem_readl(bp, DCFG1)) == 0)
|
||||||
bp->caps |= MACB_CAPS_ISR_CLEAR_ON_WRITE;
|
bp->caps |= MACB_CAPS_ISR_CLEAR_ON_WRITE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue