Oddly, GENMASK() requires signed bit numbers, so that it can compare
them for < 0. If passed an unsigned type, we get warnings about the
test never being true.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
                        /* For the CPU port, make all ports members of this
                         * VLAN.
                         */
-                       mask = GENMASK(smi->num_ports - 1, 0);
+                       mask = GENMASK((int)smi->num_ports - 1, 0);
                else
                        /* For all other ports, enable itself plus the
                         * CPU port.