diff mbox

uapi: fix linux/llc.h userspace compilation error

Message ID 20170222223826.GB14311@altlinux.org
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

Dmitry V. Levin Feb. 22, 2017, 10:38 p.m. UTC
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>
---
 include/uapi/linux/llc.h | 1 +
 1 file changed, 1 insertion(+)

Comments

David Miller Feb. 23, 2017, 3:47 p.m. UTC | #1
From: "Dmitry V. Levin" <ldv@altlinux.org>
Date: Thu, 23 Feb 2017 01:38:26 +0300

> 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>

Applied.
diff mbox

Patch

diff --git a/include/uapi/linux/llc.h b/include/uapi/linux/llc.h
index 9c987a4..a6c17f6 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 {