mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
ethernet/broadcom/tg3: Fix sparse warning: constant 0x7fffffffffffffff is so big it is long long
Sparse complains that: drivers/net/ethernet/broadcom/tg3.c:5670:55: sparse: constant 0x7fffffffffffffff is so big it is long long (on x86/32 bit) so we suffix the constant with LL in the header file. Reported-by: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Peter Huewe <peterhuewe@gmx.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b2d4b15027
commit
579e1d8162
1 changed files with 1 additions and 1 deletions
|
@ -774,7 +774,7 @@
|
|||
#define SG_DIG_AUTONEG_ERROR 0x00000001
|
||||
#define TG3_TX_TSTAMP_LSB 0x000005c0
|
||||
#define TG3_TX_TSTAMP_MSB 0x000005c4
|
||||
#define TG3_TSTAMP_MASK 0x7fffffffffffffff
|
||||
#define TG3_TSTAMP_MASK 0x7fffffffffffffffLL
|
||||
/* 0x5c8 --> 0x600 unused */
|
||||
#define MAC_TX_MAC_STATE_BASE 0x00000600 /* 16 bytes */
|
||||
#define MAC_RX_MAC_STATE_BASE 0x00000610 /* 20 bytes */
|
||||
|
|
Loading…
Reference in a new issue