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

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
......@@ -134,7 +134,7 @@ struct netlink_callback {
struct netlink_notify {
struct net *net;
int portid;
u32 portid;
int protocol;
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment