From ca723c60d38197d83854fb95495e24d73103b3fd Mon Sep 17 00:00:00 2001 From: Oleksii Bidnichenko Date: Wed, 27 Oct 2021 11:30:44 +0300 Subject: drivers:net:phy Add KSZ9XX1 phy for apalis imx6 Backport a newer version of the Ethernet PHY to support a new Gigabit Ethernet Transceiver (KSZ9131). Backported from: d397f7c45b0b ("net: phy: micrel: Separate KSZ9000 drivers from KSZ8000 drivers") Related-to: ELB-4181 Signed-off-by: Oleksii Bidnichenko --- drivers/net/phy/phy.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'drivers/net/phy/phy.c') diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c index 80bdfb6d9d5..2d9122469f7 100644 --- a/drivers/net/phy/phy.c +++ b/drivers/net/phy/phy.c @@ -491,6 +491,9 @@ int phy_init(void) #ifdef CONFIG_PHY_MICREL phy_micrel_init(); #endif +#ifdef CONFIG_PHY_MICREL_KSZ90X1 + phy_micrel_ksz90x1_init(); +#endif #ifdef CONFIG_PHY_NATSEMI phy_natsemi_init(); #endif -- cgit v1.2.3