1Replace use of <net/if_packet.h> with <linux/if_packet.h>. 2 3kernel headers <linux/if_packet.h> already provides the 4needed definitions, moreover not all libc implementations 5provide if_packet.h e.g. musl 6 7Signed-off-by: Khem Raj <raj.khem@gmail.com> 8Upstream-Status: Pending 9[From http://cgit.openembedded.org/openembedded-core/plain/meta/recipes-connectivity/irda-utils/irda-utils-0.9.18/musl.patch.] 10Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> 11 12Index: irda-utils-0.9.18/irdaping/irdaping.c 13=================================================================== 14--- irda-utils-0.9.18.orig/irdaping/irdaping.c 15+++ irda-utils-0.9.18/irdaping/irdaping.c 16@@ -33,7 +33,6 @@ 17 #include <sys/socket.h> 18 #include <sys/ioctl.h> 19 #include <net/if.h> /* For struct ifreq */ 20-#include <net/if_packet.h> /* For struct sockaddr_pkt */ 21 #include <net/if_arp.h> /* For ARPHRD_IRDA */ 22 #include <netinet/if_ether.h> /* For ETH_P_ALL */ 23 #include <netinet/in.h> /* For htons */ 24@@ -46,6 +45,7 @@ 25 #include <asm/byteorder.h> /* __cpu_to_le32 and co. */ 26 27 #include <linux/types.h> /* For __u8 and co. */ 28+#include <linux/if_packet.h> /* For struct sockaddr_pkt */ 29 #include <irda.h> 30 31 #ifndef AF_IRDA 32