diff options
Diffstat (limited to 'drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.c')
| -rw-r--r-- | drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.c | 14 | 
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.c index d4a64e66539..1918e0abf73 100644 --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.c +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.c @@ -20,6 +20,7 @@    the file called "COPYING".    Contact Information: +  Linux NICS <linux.nics@intel.com>    e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>    Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 @@ -27,8 +28,7 @@  #include <linux/pci.h>  #include <linux/delay.h> -#include "ixgbe_type.h" -#include "ixgbe_common.h" +#include "ixgbe.h"  #include "ixgbe_mbx.h"  /** @@ -223,7 +223,7 @@ out:   *  received an ack to that message within delay * timeout period   **/  static s32 ixgbe_write_posted_mbx(struct ixgbe_hw *hw, u32 *msg, u16 size, -                           u16 mbx_id) +			   u16 mbx_id)  {  	struct ixgbe_mbx_info *mbx = &hw->mbx;  	s32 ret_val = IXGBE_ERR_MBX; @@ -269,7 +269,7 @@ static s32 ixgbe_check_for_msg_pf(struct ixgbe_hw *hw, u16 vf_number)  	u32 vf_bit = vf_number % 16;  	if (!ixgbe_check_for_bit_pf(hw, IXGBE_MBVFICR_VFREQ_VF1 << vf_bit, -	                            index)) { +				    index)) {  		ret_val = 0;  		hw->mbx.stats.reqs++;  	} @@ -291,7 +291,7 @@ static s32 ixgbe_check_for_ack_pf(struct ixgbe_hw *hw, u16 vf_number)  	u32 vf_bit = vf_number % 16;  	if (!ixgbe_check_for_bit_pf(hw, IXGBE_MBVFICR_VFACK_VF1 << vf_bit, -	                            index)) { +				    index)) {  		ret_val = 0;  		hw->mbx.stats.acks++;  	} @@ -366,7 +366,7 @@ static s32 ixgbe_obtain_mbx_lock_pf(struct ixgbe_hw *hw, u16 vf_number)   *  returns SUCCESS if it successfully copied message into the buffer   **/  static s32 ixgbe_write_mbx_pf(struct ixgbe_hw *hw, u32 *msg, u16 size, -                              u16 vf_number) +			      u16 vf_number)  {  	s32 ret_val;  	u16 i; @@ -407,7 +407,7 @@ out_no_write:   *  a message due to a VF request so no polling for message is needed.   **/  static s32 ixgbe_read_mbx_pf(struct ixgbe_hw *hw, u32 *msg, u16 size, -                             u16 vf_number) +			     u16 vf_number)  {  	s32 ret_val;  	u16 i;  | 
