[RFC Patch net-next 4/4] net: phy: micrel: enable interrupt for ksz9477 phy

Arun Ramadoss posted 4 patches 3 years, 3 months ago
There is a newer version of this series
[RFC Patch net-next 4/4] net: phy: micrel: enable interrupt for ksz9477 phy
Posted by Arun Ramadoss 3 years, 3 months ago
Config_intr and handle_interrupt are enabled for ksz9477 phy. It is
similar to all other phys in the micrel phys.

Signed-off-by: Arun Ramadoss <arun.ramadoss@microchip.com>
---
 drivers/net/phy/micrel.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/phy/micrel.c b/drivers/net/phy/micrel.c
index 7b8c5c8d013e..09f2bef5d96c 100644
--- a/drivers/net/phy/micrel.c
+++ b/drivers/net/phy/micrel.c
@@ -3191,6 +3191,8 @@ static struct phy_driver ksphy_driver[] = {
 	.name		= "Microchip KSZ9477",
 	/* PHY_GBIT_FEATURES */
 	.config_init	= kszphy_config_init,
+	.config_intr	= kszphy_config_intr,
+	.handle_interrupt = kszphy_handle_interrupt,
 	.suspend	= genphy_suspend,
 	.resume		= genphy_resume,
 } };
-- 
2.36.1
Re: [RFC Patch net-next 4/4] net: phy: micrel: enable interrupt for ksz9477 phy
Posted by Andrew Lunn 3 years, 3 months ago
On Fri, Sep 09, 2022 at 09:31:20PM +0530, Arun Ramadoss wrote:
> Config_intr and handle_interrupt are enabled for ksz9477 phy. It is
> similar to all other phys in the micrel phys.
> 
> Signed-off-by: Arun Ramadoss <arun.ramadoss@microchip.com>

Reviewed-by: Andrew Lunn <andrew@lunn.ch>

    Andrew