Message ID | 20201001171250.10727-1-ap420073@gmail.com |
---|---|
State | New |
Headers | show |
Series | [net-next] net: remove NETDEV_HW_ADDR_T_SLAVE | expand |
From: Taehee Yoo <ap420073@gmail.com> Date: Thu, 1 Oct 2020 17:12:50 +0000 > NETDEV_HW_ADDR_T_SLAVE is not used anymore, remove it. > > Signed-off-by: Taehee Yoo <ap420073@gmail.com> Looks like this was never used at all. Applied, thank you.
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 28cfa53daf72..0c79d9e56a5e 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;
NETDEV_HW_ADDR_T_SLAVE is not used anymore, remove it. Signed-off-by: Taehee Yoo <ap420073@gmail.com> --- include/linux/netdevice.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-)