diff options
Diffstat (limited to 'include/linux/netlink.h')
| -rw-r--r-- | include/linux/netlink.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/netlink.h b/include/linux/netlink.h index 464ace04283..8374d296736 100644 --- a/include/linux/netlink.h +++ b/include/linux/netlink.h @@ -1,7 +1,7 @@  #ifndef __LINUX_NETLINK_H  #define __LINUX_NETLINK_H -#include <linux/socket.h> /* for sa_family_t */ +#include <linux/socket.h> /* for __kernel_sa_family_t */  #include <linux/types.h>  #define NETLINK_ROUTE		0	/* Routing/device hook				*/ @@ -30,7 +30,7 @@  #define MAX_LINKS 32		  struct sockaddr_nl { -	sa_family_t	nl_family;	/* AF_NETLINK	*/ +	__kernel_sa_family_t	nl_family;	/* AF_NETLINK	*/  	unsigned short	nl_pad;		/* zero		*/  	__u32		nl_pid;		/* port ID	*/         	__u32		nl_groups;	/* multicast groups mask */  |