nfp: remove unused suspicious mask defines
NFP_NET_RXR_MASK sounds like a mask which could be used on NFP_NET_CFG_RXRS_ENABLE register but its value is quite strange. In fact there are no users of this define so let's just remove it. Same for TX rings. Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
6ffa622d85
commit
2db221cd44
|
@ -81,14 +81,10 @@
|
|||
|
||||
/**
|
||||
* @NFP_NET_TXR_MAX: Maximum number of TX rings
|
||||
* @NFP_NET_TXR_MASK: Mask for TX rings
|
||||
* @NFP_NET_RXR_MAX: Maximum number of RX rings
|
||||
* @NFP_NET_RXR_MASK: Mask for RX rings
|
||||
*/
|
||||
#define NFP_NET_TXR_MAX 64
|
||||
#define NFP_NET_TXR_MASK (NFP_NET_TXR_MAX - 1)
|
||||
#define NFP_NET_RXR_MAX 64
|
||||
#define NFP_NET_RXR_MASK (NFP_NET_RXR_MAX - 1)
|
||||
|
||||
/**
|
||||
* Read/Write config words (0x0000 - 0x002c)
|
||||
|
|
Loading…
Reference in New Issue