mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
r8169: replace magic number for INTT mask with a constant
Use a proper constant for INTT bit mask. Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a3984578bf
commit
9a3c81fa61
1 changed files with 3 additions and 2 deletions
|
@ -599,6 +599,7 @@ enum rtl_register_content {
|
|||
RxChkSum = (1 << 5),
|
||||
PCIDAC = (1 << 4),
|
||||
PCIMulRW = (1 << 3),
|
||||
#define INTT_MASK GENMASK(1, 0)
|
||||
INTT_0 = 0x0000, // 8168
|
||||
INTT_1 = 0x0001, // 8168
|
||||
INTT_2 = 0x0002, // 8168
|
||||
|
@ -2344,7 +2345,7 @@ static int rtl_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
|
|||
if (IS_ERR(ci))
|
||||
return PTR_ERR(ci);
|
||||
|
||||
scale = &ci->scalev[RTL_R16(tp, CPlusCmd) & 3];
|
||||
scale = &ci->scalev[RTL_R16(tp, CPlusCmd) & INTT_MASK];
|
||||
|
||||
/* read IntrMitigate and adjust according to scale */
|
||||
for (w = RTL_R16(tp, IntrMitigate); w; w >>= RTL_COALESCE_SHIFT, p++) {
|
||||
|
@ -2443,7 +2444,7 @@ static int rtl_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
|
|||
|
||||
RTL_W16(tp, IntrMitigate, swab16(w));
|
||||
|
||||
tp->cp_cmd = (tp->cp_cmd & ~3) | cp01;
|
||||
tp->cp_cmd = (tp->cp_cmd & ~INTT_MASK) | cp01;
|
||||
RTL_W16(tp, CPlusCmd, tp->cp_cmd);
|
||||
RTL_R16(tp, CPlusCmd);
|
||||
|
||||
|
|
Loading…
Reference in a new issue