aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Bowling <kbowling@FreeBSD.org>2024-09-22 03:57:48 +0000
committerKevin Bowling <kbowling@FreeBSD.org>2024-09-22 03:57:48 +0000
commite3a6e916dbbade2d4047e127c371ee0d0a25a294 (patch)
treef84c3533af2690797a366bc07c60084acf150093
parentf6e1b567921187b9331bd71c86e94cf232dd7761 (diff)
downloadsrc-e3a6e916dbba.tar.gz
src-e3a6e916dbba.zip
ixgbe: fix misleading indentation in ixgbe_phy
MFC after: 1 week
-rw-r--r--sys/dev/ixgbe/ixgbe_phy.c2
1 files changed, 1 insertions, 1 deletions
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;
}
}