Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1716361 > unrolled thread

[PATCH v2 1/2] net: stmmac: Delete dead code for MDIO registration

Started byRomain Perier <romain.perier@collabora.com>
First post2017-08-21 13:50 +0200
Last post2017-08-22 14:10 +0200
Articles 3 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH v2 1/2] net: stmmac: Delete dead code for MDIO registration Romain Perier <romain.perier@collabora.com> - 2017-08-21 13:50 +0200
    Re: [PATCH v2 1/2] net: stmmac: Delete dead code for MDIO  registration Florian Fainelli <f.fainelli@gmail.com> - 2017-08-22 02:50 +0200
      Re: [PATCH v2 1/2] net: stmmac: Delete dead code for MDIO  registration Romain Perier <romain.perier@collabora.com> - 2017-08-22 14:10 +0200

#1716361 — [PATCH v2 1/2] net: stmmac: Delete dead code for MDIO registration

FromRomain Perier <romain.perier@collabora.com>
Date2017-08-21 13:50 +0200
Subject[PATCH v2 1/2] net: stmmac: Delete dead code for MDIO registration
Message-ID<ugTnr-3Rl-15@gated-at.bofh.it>
This code is no longer used, the logging function was changed by commit
fbca164776e4 ("net: stmmac: Use the right logging functi").

Fixes: fbca164776e4 ("net: stmmac: Use the right logging functi")
Signed-off-by: Romain Perier <romain.perier@collabora.com>
---
 drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c | 16 ----------------
 1 file changed, 16 deletions(-)

diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c
index 72ec711fcba2..f5f37bfa1d58 100644
--- a/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c
+++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c
@@ -248,9 +248,6 @@ int stmmac_mdio_register(struct net_device *ndev)
 	found = 0;
 	for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
 		struct phy_device *phydev = mdiobus_get_phy(new_bus, addr);
-		int act = 0;
-		char irq_num[4];
-		char *irq_str;
 
 		if (!phydev)
 			continue;
@@ -273,19 +270,6 @@ int stmmac_mdio_register(struct net_device *ndev)
 		if (priv->plat->phy_addr == -1)
 			priv->plat->phy_addr = addr;
 
-		act = (priv->plat->phy_addr == addr);
-		switch (phydev->irq) {
-		case PHY_POLL:
-			irq_str = "POLL";
-			break;
-		case PHY_IGNORE_INTERRUPT:
-			irq_str = "IGNORE";
-			break;
-		default:
-			sprintf(irq_num, "%d", phydev->irq);
-			irq_str = irq_num;
-			break;
-		}
 		phy_attached_info(phydev);
 		found = 1;
 	}
-- 
2.11.0

[toc] | [next] | [standalone]


#1716948 — Re: [PATCH v2 1/2] net: stmmac: Delete dead code for MDIO registration

FromFlorian Fainelli <f.fainelli@gmail.com>
Date2017-08-22 02:50 +0200
SubjectRe: [PATCH v2 1/2] net: stmmac: Delete dead code for MDIO registration
Message-ID<uh5yi-37f-1@gated-at.bofh.it>
In reply to#1716361
On 08/21/2017 04:45 AM, Romain Perier wrote:
> This code is no longer used, the logging function was changed by commit
> fbca164776e4 ("net: stmmac: Use the right logging functi").
> 
> Fixes: fbca164776e4 ("net: stmmac: Use the right logging functi")
> Signed-off-by: Romain Perier <romain.perier@collabora.com>
> ---
>  drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c | 16 ----------------
>  1 file changed, 16 deletions(-)
> 
> diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c
> index 72ec711fcba2..f5f37bfa1d58 100644
> --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c
> +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c
> @@ -248,9 +248,6 @@ int stmmac_mdio_register(struct net_device *ndev)
>  	found = 0;
>  	for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
>  		struct phy_device *phydev = mdiobus_get_phy(new_bus, addr);
> -		int act = 0;
> -		char irq_num[4];
> -		char *irq_str;
>  
>  		if (!phydev)
>  			continue;
> @@ -273,19 +270,6 @@ int stmmac_mdio_register(struct net_device *ndev)
>  		if (priv->plat->phy_addr == -1)
>  			priv->plat->phy_addr = addr;
>  
> -		act = (priv->plat->phy_addr == addr);
> -		switch (phydev->irq) {
> -		case PHY_POLL:
> -			irq_str = "POLL";
> -			break;
> -		case PHY_IGNORE_INTERRUPT:
> -			irq_str = "IGNORE";
> -			break;
> -		default:
> -			sprintf(irq_num, "%d", phydev->irq);
> -			irq_str = irq_num;
> -			break;
> -		}

I was actually just looking into moving these prints to
phy_attached_info(), since it is useful to know whether the interrupt is
POLL, IGNORE, or valid. Can you move that there? Then you can really
migrate over phy_attached_info() with no information loss.

Thanks!
-- 
Florian

[toc] | [prev] | [next] | [standalone]


#1717351 — Re: [PATCH v2 1/2] net: stmmac: Delete dead code for MDIO registration

FromRomain Perier <romain.perier@collabora.com>
Date2017-08-22 14:10 +0200
SubjectRe: [PATCH v2 1/2] net: stmmac: Delete dead code for MDIO registration
Message-ID<uhgam-2av-19@gated-at.bofh.it>
In reply to#1716948
Hello,


Le 22/08/2017 à 02:45, Florian Fainelli a écrit :
> On 08/21/2017 04:45 AM, Romain Perier wrote:
>> This code is no longer used, the logging function was changed by commit
>> fbca164776e4 ("net: stmmac: Use the right logging functi").
>>
>> Fixes: fbca164776e4 ("net: stmmac: Use the right logging functi")
>> Signed-off-by: Romain Perier <romain.perier@collabora.com>
>> ---
>>  drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c | 16 ----------------
>>  1 file changed, 16 deletions(-)
>>
>> diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c
>> index 72ec711fcba2..f5f37bfa1d58 100644
>> --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c
>> +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c
>> @@ -248,9 +248,6 @@ int stmmac_mdio_register(struct net_device *ndev)
>>  	found = 0;
>>  	for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
>>  		struct phy_device *phydev = mdiobus_get_phy(new_bus, addr);
>> -		int act = 0;
>> -		char irq_num[4];
>> -		char *irq_str;
>>  
>>  		if (!phydev)
>>  			continue;
>> @@ -273,19 +270,6 @@ int stmmac_mdio_register(struct net_device *ndev)
>>  		if (priv->plat->phy_addr == -1)
>>  			priv->plat->phy_addr = addr;
>>  
>> -		act = (priv->plat->phy_addr == addr);
>> -		switch (phydev->irq) {
>> -		case PHY_POLL:
>> -			irq_str = "POLL";
>> -			break;
>> -		case PHY_IGNORE_INTERRUPT:
>> -			irq_str = "IGNORE";
>> -			break;
>> -		default:
>> -			sprintf(irq_num, "%d", phydev->irq);
>> -			irq_str = irq_num;
>> -			break;
>> -		}
> I was actually just looking into moving these prints to
> phy_attached_info(), since it is useful to know whether the interrupt is
> POLL, IGNORE, or valid. Can you move that there? Then you can really
> migrate over phy_attached_info() with no information loss.
>
> Thanks!
Sure, I can take a look.

Thanks,
Romain

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web