net: mvneta: fix bit assignment in MVNETA_RXQ_CONFIG_REG
MVNETA_RXQ_HW_BUF_ALLOC bit which controls enabling hardware buffer
allocation was mistakenly set as BIT(1). This commit fixes the assignment.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
Reviewed-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Fixes: c5aff18204
("net: mvneta: driver for Marvell Armada 370/XP network
unit")
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
db6ba9a537
commit
e5bdf689d3
|
@ -36,7 +36,7 @@
|
|||
|
||||
/* Registers */
|
||||
#define MVNETA_RXQ_CONFIG_REG(q) (0x1400 + ((q) << 2))
|
||||
#define MVNETA_RXQ_HW_BUF_ALLOC BIT(1)
|
||||
#define MVNETA_RXQ_HW_BUF_ALLOC BIT(0)
|
||||
#define MVNETA_RXQ_PKT_OFFSET_ALL_MASK (0xf << 8)
|
||||
#define MVNETA_RXQ_PKT_OFFSET_MASK(offs) ((offs) << 8)
|
||||
#define MVNETA_RXQ_THRESHOLD_REG(q) (0x14c0 + ((q) << 2))
|
||||
|
|
Loading…
Reference in New Issue