From: Juhee Kang Date: Sun, 10 Oct 2021 04:03:29 +0000 (+0900) Subject: mlxsw: spectrum: use netif_is_macsec() instead of open code X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=0199215216978b612d4e8be11e878b87bc643033;p=linux.git mlxsw: spectrum: use netif_is_macsec() instead of open code Open code which is dev->priv_flags & IFF_MACSEC has already defined as netif_is_macsec(). So use netif_is_macsec() instead of open code. This patch doesn't change logic. Signed-off-by: Juhee Kang Signed-off-by: David S. Miller --- diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 15f4a658e4362..0723c1314ea25 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -5237,7 +5237,7 @@ static inline void netif_keep_dst(struct net_device *dev) static inline bool netif_reduces_vlan_mtu(struct net_device *dev) { /* TODO: reserve and use an additional IFF bit, if we get more users */ - return dev->priv_flags & IFF_MACSEC; + return netif_is_macsec(dev); } extern struct pernet_operations __net_initdata loopback_net_ops;