Skip to content

Commit

Permalink
ixgbe: Clean up type inconsistency
Browse files Browse the repository at this point in the history
Missed this when I created commit 6a14ee0 ("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>
  • Loading branch information
Don Skidmore authored and Jeff Kirsher committed Mar 13, 2015
1 parent 1f9ac57 commit ef5398b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/ethernet/intel/ixgbe/ixgbe_type.h
Original file line number Diff line number Diff line change
Expand Up @@ -2462,8 +2462,8 @@ struct ixgbe_hic_read_shadow_ram {

struct ixgbe_hic_write_shadow_ram {
union ixgbe_hic_hdr2 hdr;
u32 address;
u16 length;
__be32 address;
__be16 length;
u16 pad2;
u16 data;
u16 pad3;
Expand Down

0 comments on commit ef5398b

Please sign in to comment.