Skip to content

Commit

Permalink
net: remove unused netdev_unregistering()
Browse files Browse the repository at this point in the history
Currently, use dev->reg_state == NETREG_UNREGISTERING to check the status
which is NETREG_UNREGISTERING, rather than using netdev_unregistering.
Also, A helper function which is netdev_unregistering on nedevice.h is no
longer used. Thus, netdev_unregistering removes from netdevice.h.

Signed-off-by: Juhee Kang <claudiajkang@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Juhee Kang authored and David S. Miller committed Oct 30, 2022
1 parent 02a97e0 commit f3fb589
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions include/linux/netdevice.h
Original file line number Diff line number Diff line change
Expand Up @@ -5101,11 +5101,6 @@ static inline const char *netdev_name(const struct net_device *dev)
return dev->name;
}

static inline bool netdev_unregistering(const struct net_device *dev)
{
return dev->reg_state == NETREG_UNREGISTERING;
}

static inline const char *netdev_reg_state(const struct net_device *dev)
{
switch (dev->reg_state) {
Expand Down

0 comments on commit f3fb589

Please sign in to comment.