소스 검색

ixgbe: Clear I2C destination location

Clear the destination location for I2C data initially so that
the received data will not be affected by previous attempts.
This could have returned wrong data in certain retry sequences.

Signed-off-by: Mark Rustad <mark.d.rustad@intel.com>
Tested-by: Phil Schmitt <phillip.j.schmitt@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Mark Rustad 10 년 전
부모
커밋
6ee8c9a70d
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      drivers/net/ethernet/intel/ixgbe/ixgbe_phy.c

+ 1 - 0
drivers/net/ethernet/intel/ixgbe/ixgbe_phy.c

@@ -2026,6 +2026,7 @@ static s32 ixgbe_clock_in_i2c_byte(struct ixgbe_hw *hw, u8 *data)
 	s32 i;
 	s32 i;
 	bool bit = false;
 	bool bit = false;
 
 
+	*data = 0;
 	for (i = 7; i >= 0; i--) {
 	for (i = 7; i >= 0; i--) {
 		ixgbe_clock_in_i2c_bit(hw, &bit);
 		ixgbe_clock_in_i2c_bit(hw, &bit);
 		*data |= bit << i;
 		*data |= bit << i;