All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 1/9] drivers: net: Remove unused function igb_get_eee_status_i354() in e1000_82575.c
@ 2013-12-14 12:14 ` Rashika Kheria
  0 siblings, 0 replies; 68+ messages in thread
From: Rashika Kheria @ 2013-12-14 12:14 UTC (permalink / raw)
  To: linux-kernel
  Cc: Jeff Kirsher, Jesse Brandeburg, Bruce Allan, Carolyn Wyborny,
	Don Skidmore, Greg Rose, Peter P Waskiewicz Jr, Alex Duyck,
	John Ronciak, Tushar Dave, Akeem G Abodunrin, Matthew Vick,
	e1000-devel, netdev, josh

This patch removes the function igb_get_eee_status_i354() in
e1000_82575.c because it is unused.

It thus eliminates the following warning in
ethernet/intel/igb/e1000_82575.c:
drivers/net/ethernet/intel/igb/e1000_82575.c:2591:5: warning: no previous prototype for ‘igb_get_eee_status_i354’ [-Wmissing-prototypes]

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
---
 drivers/net/ethernet/intel/igb/e1000_82575.c |   32 --------------------------
 1 file changed, 32 deletions(-)

diff --git a/drivers/net/ethernet/intel/igb/e1000_82575.c b/drivers/net/ethernet/intel/igb/e1000_82575.c
index 47c2d10..18e5200 100644
--- a/drivers/net/ethernet/intel/igb/e1000_82575.c
+++ b/drivers/net/ethernet/intel/igb/e1000_82575.c
@@ -2580,38 +2580,6 @@ out:
 	return ret_val;
 }
 
-/**
- *  igb_get_eee_status_i354 - Get EEE status
- *  @hw: pointer to the HW structure
- *  @status: EEE status
- *
- *  Get EEE status by guessing based on whether Tx or Rx LPI indications have
- *  been received.
- **/
-s32 igb_get_eee_status_i354(struct e1000_hw *hw, bool *status)
-{
-	struct e1000_phy_info *phy = &hw->phy;
-	s32 ret_val = 0;
-	u16 phy_data;
-
-	/* Check if EEE is supported on this device. */
-	if ((hw->phy.media_type != e1000_media_type_copper) ||
-	    (phy->id != M88E1543_E_PHY_ID))
-		goto out;
-
-	ret_val = igb_read_xmdio_reg(hw, E1000_PCS_STATUS_ADDR_I354,
-				     E1000_PCS_STATUS_DEV_I354,
-				     &phy_data);
-	if (ret_val)
-		goto out;
-
-	*status = phy_data & (E1000_PCS_STATUS_TX_LPI_RCVD |
-			      E1000_PCS_STATUS_RX_LPI_RCVD) ? true : false;
-
-out:
-	return ret_val;
-}
-
 static const u8 e1000_emc_temp_data[4] = {
 	E1000_EMC_INTERNAL_DATA,
 	E1000_EMC_DIODE1_DATA,
-- 
1.7.9.5


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

end of thread, other threads:[~2013-12-20  9:39 UTC | newest]

Thread overview: 68+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-12-14 12:14 [PATCH v2 1/9] drivers: net: Remove unused function igb_get_eee_status_i354() in e1000_82575.c Rashika Kheria
2013-12-14 12:14 ` Rashika Kheria
2013-12-14 12:17 ` [PATCH v2 2/9] drivers: net: Mark functions as static in qlcnic_io.c Rashika Kheria
2013-12-19  8:47   ` [PATCH v3 1/8] " Rashika Kheria
2013-12-19  8:48     ` [PATCH v3 2/8] drivers: net: Mark functions as static in qlcnic_83xx_hw.c Rashika Kheria
2013-12-19 11:51       ` Shahed Shaikh
2013-12-19 11:51         ` Shahed Shaikh
2013-12-19 23:52       ` David Miller
2013-12-19 23:52         ` David Miller
2013-12-19  8:49     ` [PATCH v3 3/8] drivers: net: Mark functions as static in stmmac_platform.c Rashika Kheria
2013-12-19 23:52       ` David Miller
2013-12-19 23:52         ` David Miller
2013-12-19  8:52     ` [PATCH v3 4/8] drivers: net: Include new header file in sbni.c Rashika Kheria
2013-12-19 23:52       ` David Miller
2013-12-19 23:52         ` David Miller
2013-12-19  8:53     ` [PATCH v3 5/8] drivers: net: Mark functions as static in 3945-debug.c Rashika Kheria
2013-12-19 23:52       ` David Miller
2013-12-19 23:52         ` David Miller
2013-12-19 23:52         ` David Miller
2013-12-19  8:54     ` [PATCH v3 6/8] drivers: net: Mark functions as static in 4965-debug.c Rashika Kheria
2013-12-19 23:52       ` David Miller
2013-12-19 23:52         ` David Miller
2013-12-19 23:52         ` David Miller
2013-12-19  8:55     ` [PATCH v3 7/8] drivers: net: Mark functions as static in debug.c Rashika Kheria
2013-12-19 23:52       ` David Miller
2013-12-19 23:52         ` David Miller
2013-12-19 23:52         ` David Miller
2013-12-19  8:56     ` [PATCH v3 8/8] drivers: net: Mark function xenvif_count_frag_slots() as static in netback.c Rashika Kheria
2013-12-19  8:56     ` Rashika Kheria
2013-12-19 11:48       ` Wei Liu
2013-12-19 11:48       ` Wei Liu
2013-12-19 23:52       ` David Miller
2013-12-19 23:52         ` David Miller
2013-12-20  9:38         ` Paul Durrant
2013-12-20  9:38         ` Paul Durrant
2013-12-20  9:38           ` Paul Durrant
2013-12-19 23:52       ` David Miller
2013-12-19 11:49     ` [PATCH v3 1/8] drivers: net: Mark functions as static in qlcnic_io.c Shahed Shaikh
2013-12-19 11:49       ` Shahed Shaikh
2013-12-19 23:52     ` David Miller
2013-12-19 23:52       ` David Miller
2013-12-14 12:19 ` [PATCH v2 3/9] drivers: net: Mark functions as static in qlcnic_83xx_hw.c Rashika Kheria
2013-12-14 12:21 ` [PATCH v2 4/9] drivers: net: Mark functions as static in stmmac_platform.c Rashika Kheria
2013-12-14 12:25 ` [PATCH v2 5/9] drivers: net: Put prototype declaration for function sbni_probe() in sbni.c Rashika Kheria
2013-12-14 20:31   ` Josh Triplett
2013-12-15  3:26   ` David Miller
2013-12-15  3:26     ` David Miller
2013-12-15  3:41     ` Josh Triplett
2013-12-15  4:01       ` David Miller
2013-12-15  4:01         ` David Miller
2013-12-14 12:27 ` [PATCH v2 6/9] drivers: net: Mark functions as static in 3945-debug.c Rashika Kheria
2013-12-14 12:28 ` [PATCH v2 7/9] drivers: net: Mark functions as static in 4965-debug.c Rashika Kheria
2013-12-14 12:29 ` [PATCH v2 1/9] drivers: net: Remove unused function igb_get_eee_status_i354() in e1000_82575.c Jeff Kirsher
2013-12-14 12:30 ` [PATCH v2 8/9] drivers: net: Mark functions as static in debug.c Rashika Kheria
2013-12-14 12:32 ` [PATCH v2 9/9] drivers: net: Mark function xenvif_count_frag_slots() as static in netback.c Rashika Kheria
2013-12-14 12:32 ` Rashika Kheria
2013-12-16 10:50   ` Ian Campbell
2013-12-16 10:50   ` Ian Campbell
2013-12-16 17:11 ` [PATCH v2 1/9] drivers: net: Remove unused function igb_get_eee_status_i354() in e1000_82575.c Wyborny, Carolyn
2013-12-16 17:11   ` Wyborny, Carolyn
2013-12-16 17:43   ` Josh Triplett
2013-12-16 17:43     ` Josh Triplett
2013-12-16 18:17     ` Wyborny, Carolyn
2013-12-16 18:17       ` Wyborny, Carolyn
2013-12-16 18:22       ` Josh Triplett
2013-12-16 18:22         ` Josh Triplett
2013-12-16 18:51         ` Wyborny, Carolyn
2013-12-16 18:51           ` Wyborny, Carolyn

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.