diff options
author | Bruce Allan <bruce.w.allan@intel.com> | 2009-12-02 12:02:14 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-12-02 22:57:16 -0500 |
commit | 94e5b651595a8eb77665787f7559a6a7c916c195 (patch) | |
tree | 95ea19611b18619ad72d75d68174e97807bc4f6b /drivers/net/e1000e/es2lan.c | |
parent | c81c2d95449cd218c2022ce6014c52fef1eb1f66 (diff) |
e1000e: check_polarity function pointers not set for 8257x
The function pointers for 8257x devices are not set. This is not really a
problem now because there is nothing in the driver that references the
pointers for this particular MAC-family (the appropriate functions are
called directly), but the pointers should be set in case they are used in
the future.
Signed-off-by: Bruce Allan <bruce.w.allan@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/e1000e/es2lan.c')
-rw-r--r-- | drivers/net/e1000e/es2lan.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/e1000e/es2lan.c b/drivers/net/e1000e/es2lan.c index c7bc657b5da2..d2a104794609 100644 --- a/drivers/net/e1000e/es2lan.c +++ b/drivers/net/e1000e/es2lan.c | |||
@@ -1391,6 +1391,7 @@ static struct e1000_mac_operations es2_mac_ops = { | |||
1391 | 1391 | ||
1392 | static struct e1000_phy_operations es2_phy_ops = { | 1392 | static struct e1000_phy_operations es2_phy_ops = { |
1393 | .acquire = e1000_acquire_phy_80003es2lan, | 1393 | .acquire = e1000_acquire_phy_80003es2lan, |
1394 | .check_polarity = e1000_check_polarity_m88, | ||
1394 | .check_reset_block = e1000e_check_reset_block_generic, | 1395 | .check_reset_block = e1000e_check_reset_block_generic, |
1395 | .commit = e1000e_phy_sw_reset, | 1396 | .commit = e1000e_phy_sw_reset, |
1396 | .force_speed_duplex = e1000_phy_force_speed_duplex_80003es2lan, | 1397 | .force_speed_duplex = e1000_phy_force_speed_duplex_80003es2lan, |