Message ID | 20240404195500.171071-1-michael.chan@broadcom.com (mailing list archive) |
---|---|
State | Accepted |
Commit | da48a65f3ff4155364fb9e3efe0bfba58291da6b |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next] bnxt_en: Fix PTP firmware timeout parameter | expand |
Hello: This patch was applied to netdev/net-next.git (main) by Jakub Kicinski <kuba@kernel.org>: On Thu, 4 Apr 2024 12:55:00 -0700 you wrote: > Use the correct tmo_us microsecond parameter for the PTP firmware > timeout parameter. > > Fixes: 7de3c2218eed ("bnxt_en: Add a timeout parameter to bnxt_hwrm_port_ts_query()") > Reported-by: Pavan Chebbi <pavan.chebbi@broadcom.com> > Reviewed-by: Pavan Chebbi <pavan.chebbi@broadcom.com> > Reviewed-by: Andy Gospodarek <andrew.gospodarek@broadcom.com> > Signed-off-by: Michael Chan <michael.chan@broadcom.com> > > [...] Here is the summary with links: - [net-next] bnxt_en: Fix PTP firmware timeout parameter https://git.kernel.org/netdev/net-next/c/da48a65f3ff4 You are awesome, thank you!
diff --git a/drivers/net/ethernet/broadcom/bnxt/bnxt_ptp.c b/drivers/net/ethernet/broadcom/bnxt/bnxt_ptp.c index 345aac4484ee..e661ab154d6b 100644 --- a/drivers/net/ethernet/broadcom/bnxt/bnxt_ptp.c +++ b/drivers/net/ethernet/broadcom/bnxt/bnxt_ptp.c @@ -131,7 +131,7 @@ static int bnxt_hwrm_port_ts_query(struct bnxt *bp, u32 flags, u64 *ts, if (!tmo_us) tmo_us = BNXT_PTP_QTS_TIMEOUT; tmo_us = min(tmo_us, BNXT_PTP_QTS_MAX_TMO_US); - req->ts_req_timeout = cpu_to_le16(txts_tmo); + req->ts_req_timeout = cpu_to_le16(tmo_us); } resp = hwrm_req_hold(bp, req);