]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commitdiff
nfp: fix simple vNIC mailbox length
authorDirk van der Merwe <dirk.vandermerwe@netronome.com>
Thu, 7 Mar 2019 18:52:13 +0000 (10:52 -0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 7 Mar 2019 19:00:21 +0000 (11:00 -0800)
The simple vNIC mailbox length should be 12 decimal and not 0x12.
Using a decimal also makes it clear this is a length value and not
another field within the simple mailbox defines.

Found by code inspection, there are no known firmware configurations
where this would cause issues.

Fixes: 527d7d1b9949 ("nfp: read mailbox address from TLV caps")
Signed-off-by: Dirk van der Merwe <dirk.vandermerwe@netronome.com>
Reviewed-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/netronome/nfp/nfp_net_ctrl.h

index 166d7f71442e5fa765c7dfb8891a99d7cb774cad..372adea10e14e34179437ee23c5ef3ce51dac617 100644 (file)
 #define NFP_NET_CFG_MBOX_SIMPLE_CMD    0x0
 #define NFP_NET_CFG_MBOX_SIMPLE_RET    0x4
 #define NFP_NET_CFG_MBOX_SIMPLE_VAL    0x8
-#define NFP_NET_CFG_MBOX_SIMPLE_LEN    0x12
+#define NFP_NET_CFG_MBOX_SIMPLE_LEN    12
 
 #define NFP_NET_CFG_MBOX_CMD_CTAG_FILTER_ADD 1
 #define NFP_NET_CFG_MBOX_CMD_CTAG_FILTER_KILL 2