git: 0c730611ed73 - stable/14 - ixgbe: fix misleading indentation in ixgbe_phy

From: Kevin Bowling <kbowling_at_FreeBSD.org>
Date: Sun, 29 Sep 2024 03:56:48 UTC
The branch stable/14 has been updated by kbowling:

URL: https://cgit.FreeBSD.org/src/commit/?id=0c730611ed731a8e7483ad26864396897e666e70

commit 0c730611ed731a8e7483ad26864396897e666e70
Author:     Kevin Bowling <kbowling@FreeBSD.org>
AuthorDate: 2024-09-22 03:57:48 +0000
Commit:     Kevin Bowling <kbowling@FreeBSD.org>
CommitDate: 2024-09-29 03:56:34 +0000

    ixgbe: fix misleading indentation in ixgbe_phy
    
    (cherry picked from commit e3a6e916dbbade2d4047e127c371ee0d0a25a294)
---
 sys/dev/ixgbe/ixgbe_phy.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/ixgbe/ixgbe_phy.c b/sys/dev/ixgbe/ixgbe_phy.c
index e3f311473c38..da7d16a514d0 100644
--- a/sys/dev/ixgbe/ixgbe_phy.c
+++ b/sys/dev/ixgbe/ixgbe_phy.c
@@ -1492,7 +1492,7 @@ s32 ixgbe_identify_sfp_module_generic(struct ixgbe_hw *hw)
 				else if (cable_tech & IXGBE_SFF_DA_ACTIVE_CABLE)
 					hw->phy.type = ixgbe_phy_sfp_active_unknown;
 				else
-				hw->phy.type = ixgbe_phy_sfp_unknown;
+					hw->phy.type = ixgbe_phy_sfp_unknown;
 				break;
 			}
 		}