bnx2x: Add missing HSI for big-endian machines
Commit e5d3a51cef
("bnx2x: extend DCBx support") was missing HSI
changes for big-endian machine, breaking compilation on such
platforms.
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Yuval Mintz <Yuval.Mintz@qlogic.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
f58ee41e83
commit
376471a7b6
@@ -1824,10 +1824,12 @@ struct dcbx_app_priority_entry {
|
||||
u8 pri_bitmap;
|
||||
u8 appBitfield;
|
||||
#define DCBX_APP_ENTRY_VALID 0x01
|
||||
#define DCBX_APP_ENTRY_SF_MASK 0x30
|
||||
#define DCBX_APP_ENTRY_SF_MASK 0xF0
|
||||
#define DCBX_APP_ENTRY_SF_SHIFT 4
|
||||
#define DCBX_APP_SF_ETH_TYPE 0x10
|
||||
#define DCBX_APP_SF_PORT 0x20
|
||||
#define DCBX_APP_SF_UDP 0x40
|
||||
#define DCBX_APP_SF_DEFAULT 0x80
|
||||
#elif defined(__LITTLE_ENDIAN)
|
||||
u8 appBitfield;
|
||||
#define DCBX_APP_ENTRY_VALID 0x01
|
||||
|
Reference in New Issue
Block a user