netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] icplus: mdio_write(), remove unnecessary for loop
@ 2011-12-01 13:26 Patrick Kelle
  2011-12-01 17:55 ` David Miller
  2011-12-01 18:53 ` Francois Romieu
  0 siblings, 2 replies; 3+ messages in thread
From: Patrick Kelle @ 2011-12-01 13:26 UTC (permalink / raw)
  To: netdev; +Cc: davem, romieu, sorbica, Patrick Kelle

At this point the variable j is always set to 7 and the code within
the loop has to run only once anyway.

As suggested by David Miller:
"You can simply this even further since p[7] is what is used here,
and this means len is one, the inner loop therefore executes only
once, and the p[7].field value is not used (it's zero in the table)
and the write to it is completely thrown away."

Signed-off-by: Patrick Kelle <patrick.kelle81@gmail.com>
---
 drivers/net/ethernet/icplus/ipg.c |   13 +++----------
 1 files changed, 3 insertions(+), 10 deletions(-)

diff --git a/drivers/net/ethernet/icplus/ipg.c b/drivers/net/ethernet/icplus/ipg.c
index 8fd80a0..075451d 100644
--- a/drivers/net/ethernet/icplus/ipg.c
+++ b/drivers/net/ethernet/icplus/ipg.c
@@ -371,16 +371,9 @@ static void mdio_write(struct net_device *dev, int phy_id, int phy_reg, int val)
 	}
 
 	/* The last cycle is a tri-state, so read from the PHY. */
-	for (j = 7; j < 8; j++) {
-		for (i = 0; i < p[j].len; i++) {
-			ipg_write_phy_ctl(ioaddr, IPG_PC_MGMTCLK_LO | polarity);
-
-			p[j].field |= ((ipg_r8(PHY_CTRL) &
-				IPG_PC_MGMTDATA) >> 1) << (p[j].len - 1 - i);
-
-			ipg_write_phy_ctl(ioaddr, IPG_PC_MGMTCLK_HI | polarity);
-		}
-	}
+	ipg_write_phy_ctl(ioaddr, IPG_PC_MGMTCLK_LO | polarity);
+	ipg_r8(PHY_CTRL);
+	ipg_write_phy_ctl(ioaddr, IPG_PC_MGMTCLK_HI | polarity);
 }
 
 static void ipg_set_led_mode(struct net_device *dev)
-- 
1.7.7.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] icplus: mdio_write(), remove unnecessary for loop
  2011-12-01 13:26 [PATCH v2] icplus: mdio_write(), remove unnecessary for loop Patrick Kelle
@ 2011-12-01 17:55 ` David Miller
  2011-12-01 18:53 ` Francois Romieu
  1 sibling, 0 replies; 3+ messages in thread
From: David Miller @ 2011-12-01 17:55 UTC (permalink / raw)
  To: patrick.kelle81; +Cc: netdev, romieu, sorbica

From: Patrick Kelle <patrick.kelle81@gmail.com>
Date: Thu,  1 Dec 2011 14:26:56 +0100

> At this point the variable j is always set to 7 and the code within
> the loop has to run only once anyway.
> 
> As suggested by David Miller:
> "You can simply this even further since p[7] is what is used here,
> and this means len is one, the inner loop therefore executes only
> once, and the p[7].field value is not used (it's zero in the table)
> and the write to it is completely thrown away."
> 
> Signed-off-by: Patrick Kelle <patrick.kelle81@gmail.com>

Applied.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] icplus: mdio_write(), remove unnecessary for loop
  2011-12-01 13:26 [PATCH v2] icplus: mdio_write(), remove unnecessary for loop Patrick Kelle
  2011-12-01 17:55 ` David Miller
@ 2011-12-01 18:53 ` Francois Romieu
  1 sibling, 0 replies; 3+ messages in thread
From: Francois Romieu @ 2011-12-01 18:53 UTC (permalink / raw)
  To: Patrick Kelle; +Cc: netdev, davem, sorbica

Patrick Kelle <patrick.kelle81@gmail.com> :
[...]
> As suggested by David Miller:
> "You can simply this even further since p[7] is what is used here,
> and this means len is one, the inner loop therefore executes only
> once, and the p[7].field value is not used (it's zero in the table)
> and the write to it is completely thrown away."

Acked-by: Francois Romieu <romieu@fr.zoreil.com>

However you can:
- shorten p[] as p[7] is never used
- use read_phy_bit() to avoid the last three lines
- ARRAY_SIZE(p) the first loop (so the first limit - 7 - appears)

-- 
Ueimor

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-12-01 19:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-01 13:26 [PATCH v2] icplus: mdio_write(), remove unnecessary for loop Patrick Kelle
2011-12-01 17:55 ` David Miller
2011-12-01 18:53 ` Francois Romieu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).