From: Taehee Yoo Date: Thu, 1 Oct 2020 17:12:50 +0000 (+0000) Subject: net: remove NETDEV_HW_ADDR_T_SLAVE X-Git-Tag: v5.10.7~1401^2~76 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8e1b3884eed7d96d4f1210b668611ee6a1803ea5;p=platform%2Fkernel%2Flinux-rpi.git net: remove NETDEV_HW_ADDR_T_SLAVE NETDEV_HW_ADDR_T_SLAVE is not used anymore, remove it. Signed-off-by: Taehee Yoo Signed-off-by: David S. Miller --- diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 28cfa53d..0c79d9e5 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -212,9 +212,8 @@ struct netdev_hw_addr { unsigned char type; #define NETDEV_HW_ADDR_T_LAN 1 #define NETDEV_HW_ADDR_T_SAN 2 -#define NETDEV_HW_ADDR_T_SLAVE 3 -#define NETDEV_HW_ADDR_T_UNICAST 4 -#define NETDEV_HW_ADDR_T_MULTICAST 5 +#define NETDEV_HW_ADDR_T_UNICAST 3 +#define NETDEV_HW_ADDR_T_MULTICAST 4 bool global_use; int sync_cnt; int refcount;