All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-wired-lan] [PATCH v1 1/2] igc: Remove the polarity field from a PHY information structure
@ 2019-06-23 10:42 Sasha Neftin
  2019-06-23 10:42 ` [Intel-wired-lan] [PATCH v1 2/2] igc: Remove the unused field from a device specification structure Sasha Neftin
  2019-07-16  0:31 ` [Intel-wired-lan] [PATCH v1 1/2] igc: Remove the polarity field from a PHY information structure Brown, Aaron F
  0 siblings, 2 replies; 4+ messages in thread
From: Sasha Neftin @ 2019-06-23 10:42 UTC (permalink / raw)
  To: intel-wired-lan

Polarity and cable length fields is not applicable for the i225 device.
This patch comes to clean up phy information structure.

Signed-off-by: Sasha Neftin <sasha.neftin@intel.com>
---
 drivers/net/ethernet/intel/igc/igc_hw.h | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/drivers/net/ethernet/intel/igc/igc_hw.h b/drivers/net/ethernet/intel/igc/igc_hw.h
index 1039a224ac80..f689f0a02b5d 100644
--- a/drivers/net/ethernet/intel/igc/igc_hw.h
+++ b/drivers/net/ethernet/intel/igc/igc_hw.h
@@ -151,16 +151,10 @@ struct igc_phy_info {
 
 	u16 autoneg_advertised;
 	u16 autoneg_mask;
-	u16 cable_length;
-	u16 max_cable_length;
-	u16 min_cable_length;
-	u16 pair_length[4];
 
 	u8 mdix;
 
-	bool disable_polarity_correction;
 	bool is_mdix;
-	bool polarity_correction;
 	bool reset_disable;
 	bool speed_downgraded;
 	bool autoneg_wait_to_complete;
-- 
2.11.0


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

* [Intel-wired-lan] [PATCH v1 2/2] igc: Remove the unused field from a device specification structure
  2019-06-23 10:42 [Intel-wired-lan] [PATCH v1 1/2] igc: Remove the polarity field from a PHY information structure Sasha Neftin
@ 2019-06-23 10:42 ` Sasha Neftin
  2019-07-16  0:33   ` Brown, Aaron F
  2019-07-16  0:31 ` [Intel-wired-lan] [PATCH v1 1/2] igc: Remove the polarity field from a PHY information structure Brown, Aaron F
  1 sibling, 1 reply; 4+ messages in thread
From: Sasha Neftin @ 2019-06-23 10:42 UTC (permalink / raw)
  To: intel-wired-lan

This patch comes to clean up the device specification structure.

Signed-off-by: Sasha Neftin <sasha.neftin@intel.com>
---
 drivers/net/ethernet/intel/igc/igc_hw.h | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/drivers/net/ethernet/intel/igc/igc_hw.h b/drivers/net/ethernet/intel/igc/igc_hw.h
index f689f0a02b5d..9a338fbf671c 100644
--- a/drivers/net/ethernet/intel/igc/igc_hw.h
+++ b/drivers/net/ethernet/intel/igc/igc_hw.h
@@ -184,12 +184,7 @@ struct igc_fc_info {
 };
 
 struct igc_dev_spec_base {
-	bool global_device_reset;
-	bool eee_disable;
 	bool clear_semaphore_once;
-	bool module_plugged;
-	u8 media_port;
-	bool mas_capable;
 };
 
 struct igc_hw {
-- 
2.11.0


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

* [Intel-wired-lan] [PATCH v1 1/2] igc: Remove the polarity field from a PHY information structure
  2019-06-23 10:42 [Intel-wired-lan] [PATCH v1 1/2] igc: Remove the polarity field from a PHY information structure Sasha Neftin
  2019-06-23 10:42 ` [Intel-wired-lan] [PATCH v1 2/2] igc: Remove the unused field from a device specification structure Sasha Neftin
@ 2019-07-16  0:31 ` Brown, Aaron F
  1 sibling, 0 replies; 4+ messages in thread
From: Brown, Aaron F @ 2019-07-16  0:31 UTC (permalink / raw)
  To: intel-wired-lan

On Sun, 2019-06-23 at 13:42 +0300, Sasha Neftin wrote:
> Polarity and cable length fields is not applicable for the i225 device.
> This patch comes to clean up phy information structure.
> 
> Signed-off-by: Sasha Neftin <sasha.neftin@intel.com>
> ---
>  drivers/net/ethernet/intel/igc/igc_hw.h | 6 ------
>  1 file changed, 6 deletions(-)

Tested-by: Aaron Brown <aaron.f.brown@intel.com>

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

* [Intel-wired-lan] [PATCH v1 2/2] igc: Remove the unused field from a device specification structure
  2019-06-23 10:42 ` [Intel-wired-lan] [PATCH v1 2/2] igc: Remove the unused field from a device specification structure Sasha Neftin
@ 2019-07-16  0:33   ` Brown, Aaron F
  0 siblings, 0 replies; 4+ messages in thread
From: Brown, Aaron F @ 2019-07-16  0:33 UTC (permalink / raw)
  To: intel-wired-lan

On Sun, 2019-06-23 at 13:42 +0300, Sasha Neftin wrote:
> This patch comes to clean up the device specification structure.
> 
> Signed-off-by: Sasha Neftin <sasha.neftin@intel.com>
> ---
>  drivers/net/ethernet/intel/igc/igc_hw.h | 5 -----
>  1 file changed, 5 deletions(-)

Tested-by: Aaron Brown <aaron.f.brown@intel.com>

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

end of thread, other threads:[~2019-07-16  0:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-23 10:42 [Intel-wired-lan] [PATCH v1 1/2] igc: Remove the polarity field from a PHY information structure Sasha Neftin
2019-06-23 10:42 ` [Intel-wired-lan] [PATCH v1 2/2] igc: Remove the unused field from a device specification structure Sasha Neftin
2019-07-16  0:33   ` Brown, Aaron F
2019-07-16  0:31 ` [Intel-wired-lan] [PATCH v1 1/2] igc: Remove the polarity field from a PHY information structure Brown, Aaron F

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.