diff options
author | Don Skidmore <donald.c.skidmore@intel.com> | 2015-03-13 17:01:34 -0400 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2015-03-13 17:01:34 -0400 |
commit | ef5398bb8df89c4af3f1f21c4190dfef0e80d45e (patch) | |
tree | c92b42472a0a1061ad7bc2a9da1567b555f27edd | |
parent | 1f9ac57cad1448793844dcfe5b5e00407f2c6490 (diff) |
ixgbe: Clean up type inconsistency
Missed this when I created commit 6a14ee0cfb197 ("ixgbe: Add X550 support
function pointers"). Use a the __be* type to be consistent with how the
value is assigned.
CC: <kernel-team@fb.com>
Signed-off-by: Don Skidmore <donald.c.skidmore@intel.com>
Tested-by: Phil Schmitt <phillip.j.schmitt@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
-rw-r--r-- | drivers/net/ethernet/intel/ixgbe/ixgbe_type.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_type.h b/drivers/net/ethernet/intel/ixgbe/ixgbe_type.h index 02dc62ef19e5..c3ddc944f1e9 100644 --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_type.h +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_type.h | |||
@@ -2462,8 +2462,8 @@ struct ixgbe_hic_read_shadow_ram { | |||
2462 | 2462 | ||
2463 | struct ixgbe_hic_write_shadow_ram { | 2463 | struct ixgbe_hic_write_shadow_ram { |
2464 | union ixgbe_hic_hdr2 hdr; | 2464 | union ixgbe_hic_hdr2 hdr; |
2465 | u32 address; | 2465 | __be32 address; |
2466 | u16 length; | 2466 | __be16 length; |
2467 | u16 pad2; | 2467 | u16 pad2; |
2468 | u16 data; | 2468 | u16 data; |
2469 | u16 pad3; | 2469 | u16 pad3; |