Message ID | 20210806140437.4016159-1-bigunclemax@gmail.com |
---|---|
State | New |
Headers | show |
Series | net: marvell: fix MVNETA_TX_IN_PRGRS bit number | expand |
On Fri, 6 Aug 2021 17:04:37 +0300 Maksim wrote: > According to Armada XP datasheet bit at 0 position is corresponding for > TxInProg indication. > > Signed-off-by: Maksim <bigunclemax@gmail.com> We'll need your full name in the From and Sign-off tag.
diff --git a/drivers/net/ethernet/marvell/mvneta.c b/drivers/net/ethernet/marvell/mvneta.c index 76a7777c746da..de32e5b49053b 100644 --- a/drivers/net/ethernet/marvell/mvneta.c +++ b/drivers/net/ethernet/marvell/mvneta.c @@ -105,7 +105,7 @@ #define MVNETA_VLAN_PRIO_TO_RXQ 0x2440 #define MVNETA_VLAN_PRIO_RXQ_MAP(prio, rxq) ((rxq) << ((prio) * 3)) #define MVNETA_PORT_STATUS 0x2444 -#define MVNETA_TX_IN_PRGRS BIT(1) +#define MVNETA_TX_IN_PRGRS BIT(0) #define MVNETA_TX_FIFO_EMPTY BIT(8) #define MVNETA_RX_MIN_FRAME_SIZE 0x247c /* Only exists on Armada XP and Armada 370 */
According to Armada XP datasheet bit at 0 position is corresponding for TxInProg indication. Signed-off-by: Maksim <bigunclemax@gmail.com> --- drivers/net/ethernet/marvell/mvneta.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)