Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 65698610 authored by David S. Miller's avatar David S. Miller
Browse files

net: Make ndo_neigh_destroy return void.



The return value isn't used.

Suggested by Ben Hucthings.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 84f9307c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -975,7 +975,7 @@ struct net_device_ops {
	int			(*ndo_set_features)(struct net_device *dev,
						    netdev_features_t features);
	int			(*ndo_neigh_construct)(struct neighbour *n);
	int			(*ndo_neigh_destroy)(struct neighbour *n);
	void			(*ndo_neigh_destroy)(struct neighbour *n);
};

/*