[PATCH v3] net: phy: realtek: Add support for RTL9000AA/AN

2021-01-21 Thread Yuusuke Ashizuka
RTL9000AA/AN as 100BASE-T1 is following: - 100 Mbps - Full duplex - Link Status Change Interrupt - Master/Slave configuration Signed-off-by: Yuusuke Ashizuka Signed-off-by: Torii Kenichi --- v3: - Support for master-slave configuration v2: - Remove the use of .ack_interrupt() - Implement

[PATCH ethtool] Fix help message for master-slave option

2021-01-20 Thread Yuusuke Ashizuka
Fixes: 558f7cc33daf ("netlink: add master/slave configuration support") Signed-off-by: Yuusuke Ashizuka --- ethtool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethtool.c b/ethtool.c index 585aafa..84a61f4 100644 --- a/ethtool.c +++ b/ethtool.c @@ -5630

[PATCH v2] net: phy: realtek: Add support for RTL9000AA/AN

2021-01-10 Thread Yuusuke Ashizuka
RTL9000AA/AN as 100BASE-T1 is following: - 100 Mbps - Full duplex - Link Status Change Interrupt Signed-off-by: Yuusuke Ashizuka Signed-off-by: Torii Kenichi --- v2: - Remove the use of .ack_interrupt() - Implement .handle_interrupt() callback - Remove the slash from driver name --- drivers

[PATCH] net: phy: realtek: Add support for RTL9000AA/AN

2020-12-24 Thread Yuusuke Ashizuka
RTL9000AA/AN as 100BASE-T1 is following: - 100 Mbps - Full duplex - Link Status Change Interrupt Signed-off-by: Yuusuke Ashizuka Signed-off-by: Torii Kenichi --- drivers/net/phy/realtek.c | 51 +++ 1 file changed, 51 insertions(+) diff --git a/drivers/net

[PATCH v3] ravb: Fixed to be able to unload modules

2020-08-20 Thread Yuusuke Ashizuka
;Renesas Ethernet AVB driver proper") Signed-off-by: Yuusuke Ashizuka Reviewed-by: Sergei Shtylyov --- Changes in v3: - Update the commit subject and description. - Add Fixes c156633f1353. - Add Reviewed-by Sergei. https://patchwork.kernel.org/patch/11692719/ Changes in v2: - Fix build er

[PATCH v2] ravb: Fixed the problem that rmmod can not be done

2020-07-30 Thread Yuusuke Ashizuka
ule Size Used by ravb 40960 1 $ rmmod ravb rmmod: ERROR: Module ravb is in use Fixed to execute mdio_init() at open and free_mdio() at close, thereby rmmod is possible in the ifdown state. Signed-off-by: Yuusuke Ashizuka --- Changes in v2: - Fix build er

[PATCH] ravb: Fixed the problem that rmmod can not be done

2020-07-29 Thread Yuusuke Ashizuka
ule Size Used by ravb 40960 1 $ rmmod ravb rmmod: ERROR: Module ravb is in use Fixed to execute mdio_init() at open and free_mdio() at close, thereby rmmod is possible in the ifdown state. Signed-off-by: Yuusuke Ashizuka --- drivers/net/ethernet/renesas/ravb_mai