mirror of https://gitee.com/openkylin/linux.git
staging: et131x: Combine two if statements with same effect
Both these if statements have the same effect when true, so combine them and save a few lines. Signed-off-by: Mark Einon <mark.einon@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
97cd38dc93
commit
668caa674c
|
@ -4137,10 +4137,8 @@ static void et131x_multicast(struct net_device *netdev)
|
|||
else
|
||||
adapter->packet_filter &= ~ET131X_PACKET_TYPE_PROMISCUOUS;
|
||||
|
||||
if (netdev->flags & IFF_ALLMULTI)
|
||||
adapter->packet_filter |= ET131X_PACKET_TYPE_ALL_MULTICAST;
|
||||
|
||||
if (netdev_mc_count(netdev) > NIC_MAX_MCAST_LIST)
|
||||
if ((netdev->flags & IFF_ALLMULTI) ||
|
||||
(netdev_mc_count(netdev) > NIC_MAX_MCAST_LIST))
|
||||
adapter->packet_filter |= ET131X_PACKET_TYPE_ALL_MULTICAST;
|
||||
|
||||
if (netdev_mc_count(netdev) < 1) {
|
||||
|
|
Loading…
Reference in New Issue