kernel: bump 4.14 to 4.14.104
[openwrt/openwrt.git] / target / linux / mvebu / patches-4.14 / 411-sfp-add-sfp-compatible.patch
1 From 3344f73509a34d2124b716efc79cd9787773018b Mon Sep 17 00:00:00 2001
2 From: Russell King <rmk+kernel@armlinux.org.uk>
3 Date: Fri, 14 Apr 2017 20:17:13 +0100
4 Subject: sfp: add sfp+ compatible
5
6 Add a compatible for SFP+ cages. SFP+ cages are backwards compatible,
7 but the ethernet device behind them may not support the slower speeds
8 of SFP modules.
9
10 Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
11 ---
12 drivers/net/phy/sfp.c | 1 +
13 1 file changed, 1 insertion(+)
14
15 --- a/drivers/net/phy/sfp.c
16 +++ b/drivers/net/phy/sfp.c
17 @@ -1148,6 +1148,7 @@ static int sfp_remove(struct platform_de
18
19 static const struct of_device_id sfp_of_match[] = {
20 { .compatible = "sff,sfp", },
21 + { .compatible = "sff,sfp+", },
22 { },
23 };
24 MODULE_DEVICE_TABLE(of, sfp_of_match);