Re: [PATCH] net: macb: Correct the MID field length value

2015-03-05 Thread David Miller
From: Michal Simek 
Date: Thu,  5 Mar 2015 15:02:10 +0100

> From: Punnaiah Choudary Kalluri 
> 
> The latest spec "I-IPA01-0266-USR Rev 10" limit the MID field length to 12 bit
> value. For previous versions it is 16 bit value.
> 
> This change will not break the backward compatibility as the latest ID value 
> is
> 7 and with in the 12 bit value limit.
> 
> Signed-off-by: Punnaiah Choudary Kalluri 
> Signed-off-by: Michal Simek 

Applied, thanks.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] net: macb: Correct the MID field length value

2015-03-05 Thread Michal Simek
From: Punnaiah Choudary Kalluri 

The latest spec "I-IPA01-0266-USR Rev 10" limit the MID field length to 12 bit
value. For previous versions it is 16 bit value.

This change will not break the backward compatibility as the latest ID value is
7 and with in the 12 bit value limit.

Signed-off-by: Punnaiah Choudary Kalluri 
Signed-off-by: Michal Simek 
---

 drivers/net/ethernet/cadence/macb.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/cadence/macb.h 
b/drivers/net/ethernet/cadence/macb.h
index 57f0a1a7415d..6cfff0b04d05 100644
--- a/drivers/net/ethernet/cadence/macb.h
+++ b/drivers/net/ethernet/cadence/macb.h
@@ -352,7 +352,7 @@
 
 /* Bitfields in MID */
 #define MACB_IDNUM_OFFSET  16
-#define MACB_IDNUM_SIZE16
+#define MACB_IDNUM_SIZE12
 #define MACB_REV_OFFSET0
 #define MACB_REV_SIZE  16
 
-- 
1.8.2.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/