git: 30ae347bc109 - stable/14 - if_bnxt: Incorrect Labeling of Supported Medium in `ifconfig -m <inf>` Command

From: Warner Losh <imp_at_FreeBSD.org>
Date: Mon, 03 Jun 2024 19:24:49 UTC
The branch stable/14 has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=30ae347bc1092080780f2a584131f53244ff72d6

commit 30ae347bc1092080780f2a584131f53244ff72d6
Author:     Chandrakanth Patil <chandrakanth.patil@broadcom.com>
AuthorDate: 2024-03-06 13:14:27 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2024-06-03 19:23:12 +0000

    if_bnxt: Incorrect Labeling of Supported Medium in `ifconfig -m <inf>` Command
    
    The 1G speed on DAC medium is incorrectly labeled as 1000baseT, it
    should be 1000baseCX. Updated the label accordingly.
    
    Reviewed by:            imp
    Approved by:            imp
    Differential revision:  https://reviews.freebsd.org/D42952
    
    (cherry picked from commit c5108e37fbf93a538c76325766b8a3d76a72f119)
---
 sys/dev/bnxt/if_bnxt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/bnxt/if_bnxt.c b/sys/dev/bnxt/if_bnxt.c
index 8dc151121311..1432587cbd4a 100644
--- a/sys/dev/bnxt/if_bnxt.c
+++ b/sys/dev/bnxt/if_bnxt.c
@@ -2891,7 +2891,7 @@ bnxt_add_media_types(struct bnxt_softc *softc)
 		BNXT_IFMEDIA_ADD(supported, SPEEDS_40GB, IFM_40G_CR4);
 		BNXT_IFMEDIA_ADD(supported, SPEEDS_25GB, IFM_25G_CR);
 		BNXT_IFMEDIA_ADD(supported, SPEEDS_10GB, IFM_10G_CR1);
-		BNXT_IFMEDIA_ADD(supported, SPEEDS_1GB, IFM_1000_T);
+		BNXT_IFMEDIA_ADD(supported, SPEEDS_1GB, IFM_1000_CX);
 		break;
 
 	case HWRM_PORT_PHY_QCFG_OUTPUT_PHY_TYPE_100G_BASELR4: