Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d5ec98a0 authored by Don Skidmore's avatar Don Skidmore Committed by Jeff Kirsher
Browse files

ixgbe: fix X550 default set_phy_power method



Even though X550 may later clear this value for certain devices
set it initially to support copper.

Signed-off-by: default avatarDon Skidmore <donald.c.skidmore@intel.com>
Tested-by: default avatarKrishneil Singh <krishneil.k.singh@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 7e49d616
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
/*******************************************************************************
/*******************************************************************************
 *
 *
 *  Intel 10 Gigabit PCI Express Linux driver
 *  Intel 10 Gigabit PCI Express Linux driver
 *  Copyright(c) 1999 - 2014 Intel Corporation.
 *  Copyright(c) 1999 - 2015 Intel Corporation.
 *
 *
 *  This program is free software; you can redistribute it and/or modify it
 *  This program is free software; you can redistribute it and/or modify it
 *  under the terms and conditions of the GNU General Public License,
 *  under the terms and conditions of the GNU General Public License,
@@ -1855,6 +1855,7 @@ static struct ixgbe_eeprom_operations eeprom_ops_X550EM_x = {
	.read_reg		= &ixgbe_read_phy_reg_generic, \
	.read_reg		= &ixgbe_read_phy_reg_generic, \
	.write_reg		= &ixgbe_write_phy_reg_generic, \
	.write_reg		= &ixgbe_write_phy_reg_generic, \
	.setup_link		= &ixgbe_setup_phy_link_generic, \
	.setup_link		= &ixgbe_setup_phy_link_generic, \
	.set_phy_power		= &ixgbe_set_copper_phy_power, \
	.check_overtemp		= &ixgbe_tn_check_overtemp, \
	.check_overtemp		= &ixgbe_tn_check_overtemp, \
	.get_firmware_version	= &ixgbe_get_phy_firmware_version_generic,
	.get_firmware_version	= &ixgbe_get_phy_firmware_version_generic,


@@ -1864,7 +1865,6 @@ static struct ixgbe_phy_operations phy_ops_X550 = {
	.identify		= &ixgbe_identify_phy_generic,
	.identify		= &ixgbe_identify_phy_generic,
	.read_i2c_combined	= &ixgbe_read_i2c_combined_generic,
	.read_i2c_combined	= &ixgbe_read_i2c_combined_generic,
	.write_i2c_combined	= &ixgbe_write_i2c_combined_generic,
	.write_i2c_combined	= &ixgbe_write_i2c_combined_generic,
	.set_phy_power		= &ixgbe_set_copper_phy_power,
};
};


static struct ixgbe_phy_operations phy_ops_X550EM_x = {
static struct ixgbe_phy_operations phy_ops_X550EM_x = {