diff options
author | Tom Rini <trini@konsulko.com> | 2022-11-28 13:12:40 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-11-28 13:12:40 -0500 |
commit | 39b81955d38c11254b455322b9d98e07010049d6 (patch) | |
tree | ef486924750d138effb1ecd24081cb6bf28820d4 /drivers/net/phy/phy.c | |
parent | 597e7b784dbfec29fd8d6c450bc9a3a607c4feae (diff) | |
parent | 5e6c069b2c6b37083da685f39fa56ab5137dbdf9 (diff) |
Merge branch '2022-11-28-networking-updates-and-improvements'
- LiteX Ethernet support, dwc_eth_qos fixes, re-work fixing
CVE-2022-{30790,30552}, macb race fix, Intel XWAY PHY support
and add wget command and TCP support.
Diffstat (limited to 'drivers/net/phy/phy.c')
-rw-r--r-- | drivers/net/phy/phy.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c index 90876630533..92143cf2369 100644 --- a/drivers/net/phy/phy.c +++ b/drivers/net/phy/phy.c @@ -556,6 +556,9 @@ int phy_init(void) #ifdef CONFIG_PHY_XILINX phy_xilinx_init(); #endif +#ifdef CONFIG_PHY_XWAY + phy_xway_init(); +#endif #ifdef CONFIG_PHY_MSCC phy_mscc_init(); #endif |