From: Claudiu Beznea <[email protected]> Date: Wed, 1 Jul 2020 16:08:49 +0300
> @@ -3482,8 +3482,6 @@ static void macb_probe_queues(void __iomem *mem, > unsigned int *queue_mask, ... > + *num_queues = hweight_long(*queue_mask); queue_mask is not a long, it is an unsinged int, therefore hweight32() is probably more appropriate.

