mirror of
https://github.com/openwrt/openwrt.git
synced 2026-06-17 12:40:16 +04:00
a73e378bea
Refresh the patches. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
27 lines
1.0 KiB
Diff
27 lines
1.0 KiB
Diff
From 51a16863b04b1c2b28d45d80934f2267547734b7 Mon Sep 17 00:00:00 2001
|
|
From: Daniel Golle <daniel@makrotopia.org>
|
|
Date: Fri, 9 May 2025 16:33:27 +0100
|
|
Subject: [PATCH] net: sfp: add quirk for QINIYEK BJ-SFP-10G-T copper SFP+
|
|
module
|
|
|
|
Add quirk for a copper SFP+ module that identifies itself as "QINIYEK"
|
|
"BJ-SFP-10G-T".
|
|
|
|
It uses RollBall protocol to talk to the built-in RealTek RTL8261N PHY.
|
|
|
|
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
|
|
---
|
|
drivers/net/phy/sfp.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/drivers/net/phy/sfp.c
|
|
+++ b/drivers/net/phy/sfp.c
|
|
@@ -585,6 +585,7 @@ static const struct sfp_quirk sfp_quirks
|
|
SFP_QUIRK_S("OEM", "SFP-2.5G-BX10-U", sfp_quirk_2500basex),
|
|
SFP_QUIRK_F("OEM", "RTSFP-10", sfp_fixup_rollball_cc),
|
|
SFP_QUIRK_F("OEM", "RTSFP-10G", sfp_fixup_rollball_cc),
|
|
+ SFP_QUIRK_F("QINIYEK", "BJ-SFP-10G-T", sfp_fixup_fs_10gt),
|
|
SFP_QUIRK_F("Turris", "RTSFP-2.5G", sfp_fixup_rollball),
|
|
SFP_QUIRK_F("Turris", "RTSFP-10", sfp_fixup_rollball),
|
|
SFP_QUIRK_F("Turris", "RTSFP-10G", sfp_fixup_rollball),
|