Browse Source

net: amd-xgbe: fix comparison to bitshift when dealing with a mask

Due to a typo, the mask was destroyed by a comparison instead of a bit
shift.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Acked-by: Tom Lendacky <thomas.lendacky@amd.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Wolfram Sang 7 years ago
parent
commit
a3276892db
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/net/ethernet/amd/xgbe/xgbe-drv.c

+ 1 - 1
drivers/net/ethernet/amd/xgbe/xgbe-drv.c

@@ -595,7 +595,7 @@ isr_done:
 
 
 		reissue_mask = 1 << 0;
 		reissue_mask = 1 << 0;
 		if (!pdata->per_channel_irq)
 		if (!pdata->per_channel_irq)
-			reissue_mask |= 0xffff < 4;
+			reissue_mask |= 0xffff << 4;
 
 
 		XP_IOWRITE(pdata, XP_INT_REISSUE_EN, reissue_mask);
 		XP_IOWRITE(pdata, XP_INT_REISSUE_EN, reissue_mask);
 	}
 	}