diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2017-02-23 01:38:26 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-02-23 18:46:08 +0300 |
commit | 40df93be6a7084e09688e1ddc45615d13df133fc (patch) | |
tree | 85d29d800676b97970c8d1e4851606c07fea9120 /include/uapi/linux/llc.h | |
parent | 557d7acd754543ca6f7166b9abde0a1af01ed848 (diff) | |
download | linux-40df93be6a7084e09688e1ddc45615d13df133fc.tar.xz |
uapi: fix linux/llc.h userspace compilation error
Include <linux/if.h> to fix the following linux/llc.h userspace
compilation error:
/usr/include/linux/llc.h:26:27: error: 'IFHWADDRLEN' undeclared here (not in a function)
unsigned char sllc_mac[IFHWADDRLEN];
Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/uapi/linux/llc.h')
-rw-r--r-- | include/uapi/linux/llc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/uapi/linux/llc.h b/include/uapi/linux/llc.h index 9c987a402473..a6c17f66ee94 100644 --- a/include/uapi/linux/llc.h +++ b/include/uapi/linux/llc.h @@ -14,6 +14,7 @@ #define _UAPI__LINUX_LLC_H #include <linux/socket.h> +#include <linux/if.h> /* For IFHWADDRLEN. */ #define __LLC_SOCK_SIZE__ 16 /* sizeof(sockaddr_llc), word align. */ struct sockaddr_llc { |