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

Commit 0392d099 authored by Richard Weinberger's avatar Richard Weinberger Committed by David S. Miller
Browse files

netlink: Fix portid type in netlink_notify



portid is an unsigned integer. Fix netlink_notify to
match all other portid user in the kernel.

Signed-off-by: default avatarRichard Weinberger <richard@nod.at>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 3d0d26c7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -134,7 +134,7 @@ struct netlink_callback {

struct netlink_notify {
	struct net *net;
	int portid;
	u32 portid;
	int protocol;
};