]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
e1000e: cleanup calls to setup_physical_interface function pointer
authorBruce Allan <bruce.w.allan@intel.com>
Wed, 22 Feb 2012 09:02:42 +0000 (09:02 +0000)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Sat, 25 Feb 2012 05:38:13 +0000 (21:38 -0800)
Call the MAC ops setup_physical_interface function pointer instead of the
MAC-family-specific function to conform to the rest of the driver design.

Signed-off-by: Bruce Allan <bruce.w.allan@intel.com>
Tested-by: Aaron Brown <aaron.f.brown@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/e1000e/ich8lan.c

index da89e2b73b408d6333c140d3cd05bfdbcf508380..fdc3be9834ac3e722b6744bb839f8c763f673d06 100644 (file)
@@ -3353,7 +3353,7 @@ static s32 e1000_setup_link_ich8lan(struct e1000_hw *hw)
                hw->fc.current_mode);
 
        /* Continue to configure the copper link. */
-       ret_val = e1000_setup_copper_link_ich8lan(hw);
+       ret_val = hw->mac.ops.setup_physical_interface(hw);
        if (ret_val)
                return ret_val;