This is a note to let you know that I've just added the patch titled

    net/cadence/macb: fix bug/typo in extracting gem_irq_read_clear bit

to the 3.10-stable tree which can be found at:
    
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     net-cadence-macb-fix-bug-typo-in-extracting-gem_irq_read_clear-bit.patch
and it can be found in the queue-3.10 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.


>From 35e568df646dc23bd2d00c8865c3118794d1835a Mon Sep 17 00:00:00 2001
From: Jongsung Kim <[email protected]>
Date: Tue, 9 Jul 2013 17:36:00 +0900
Subject: net/cadence/macb: fix bug/typo in extracting gem_irq_read_clear bit

From: Jongsung Kim <[email protected]>

[ Upstream commit 01276ed2424eb78c95461545410923d5da154d31 ]

Signed-off-by: Jongsung Kim <[email protected]>
Acked-by: Nicolas Ferre <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
 drivers/net/ethernet/cadence/macb.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/net/ethernet/cadence/macb.c
+++ b/drivers/net/ethernet/cadence/macb.c
@@ -1070,7 +1070,7 @@ static void macb_configure_dma(struct ma
 static void macb_configure_caps(struct macb *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;
        }
 }


Patches currently in stable-queue which might be from [email protected] are

queue-3.10/net-cadence-macb-fix-bug-typo-in-extracting-gem_irq_read_clear-bit.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to