diff options
author | Hariprasad Kelam <hkelam@marvell.com> | 2024-11-22 21:50:31 +0530 |
---|---|---|
committer | Paolo Abeni <pabeni@redhat.com> | 2024-11-26 12:09:40 +0100 |
commit | 7ebbbb23ea5b6d051509cb11399afac5042c9266 (patch) | |
tree | 28680d86b370cec9a432b9f6c1c90c50faad0568 | |
parent | 407618d66dba55e7db1278872e8be106808bbe91 (diff) | |
download | lwn-7ebbbb23ea5b6d051509cb11399afac5042c9266.tar.gz lwn-7ebbbb23ea5b6d051509cb11399afac5042c9266.zip |
octeontx2-af: RPM: Fix mismatch in lmac type
Due to a bug in the previous patch, there is a mismatch
between the lmac type reported by the driver and the actual
hardware configuration.
Fixes: 3ad3f8f93c81 ("octeontx2-af: cn10k: MAC internal loopback support")
Signed-off-by: Hariprasad Kelam <hkelam@marvell.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
-rw-r--r-- | drivers/net/ethernet/marvell/octeontx2/af/rpm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/marvell/octeontx2/af/rpm.c b/drivers/net/ethernet/marvell/octeontx2/af/rpm.c index 1b34cf9c9703..9e8c5e4389f8 100644 --- a/drivers/net/ethernet/marvell/octeontx2/af/rpm.c +++ b/drivers/net/ethernet/marvell/octeontx2/af/rpm.c @@ -467,7 +467,7 @@ u8 rpm_get_lmac_type(void *rpmd, int lmac_id) int err; req = FIELD_SET(CMDREG_ID, CGX_CMD_GET_LINK_STS, req); - err = cgx_fwi_cmd_generic(req, &resp, rpm, 0); + err = cgx_fwi_cmd_generic(req, &resp, rpm, lmac_id); if (!err) return FIELD_GET(RESP_LINKSTAT_LMAC_TYPE, resp); return err; |