diff options
author | Richard Weinberger <richard@nod.at> | 2015-04-13 00:52:35 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-04-13 16:35:16 -0400 |
commit | 0392d099ab29767b8d7d4d1d29e8020f8abe943f (patch) | |
tree | 40553a0f777d6042202c0793dbad7a330b6b53f0 /include/linux/netlink.h | |
parent | 3d0d26c7976bf190c3f1d2efbc31462db8246bc0 (diff) |
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: Richard Weinberger <richard@nod.at>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netlink.h')
-rw-r--r-- | include/linux/netlink.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netlink.h b/include/linux/netlink.h index 02fc86d2348e..6835c1279df7 100644 --- a/include/linux/netlink.h +++ b/include/linux/netlink.h @@ -134,7 +134,7 @@ struct netlink_callback { struct netlink_notify { struct net *net; - int portid; + u32 portid; int protocol; }; |