implement kernel symbol neutral method to select audio addon boards
[openadk.git] / package / libnfnetlink / patches / patch-include_libnfnetlink_linux_nfnetlink_h
blob86b23166096d291e8142ba1246246cd04354d8ad
1 --- libnfnetlink-1.0.1.orig/include/libnfnetlink/linux_nfnetlink.h      2008-06-18 14:36:57.000000000 +0200
2 +++ libnfnetlink-1.0.1/include/libnfnetlink/linux_nfnetlink.h   2014-04-08 09:31:12.000000000 +0200
3 @@ -1,6 +1,6 @@
4  #ifndef _NFNETLINK_H
5  #define _NFNETLINK_H
6 -#include <linux/types.h>
7 +#include <stdint.h>
8  #include <libnfnetlink/linux_nfnetlink_compat.h>
9  
10  enum nfnetlink_groups {
11 @@ -25,9 +25,9 @@ enum nfnetlink_groups {
12  /* General form of address family dependent message.
13   */
14  struct nfgenmsg {
15 -       u_int8_t  nfgen_family;         /* AF_xxx */
16 -       u_int8_t  version;              /* nfnetlink version */
17 -       u_int16_t    res_id;            /* resource id */
18 +       uint8_t  nfgen_family;          /* AF_xxx */
19 +       uint8_t  version;               /* nfnetlink version */
20 +       uint16_t    res_id;             /* resource id */
21  };
23  #define NFNETLINK_V0   0
24 @@ -59,7 +59,7 @@ struct nfnl_callback
25         int (*call)(struct sock *nl, struct sk_buff *skb, 
26                 struct nlmsghdr *nlh, struct nlattr *cda[]);
27         const struct nla_policy *policy;        /* netlink attribute policy */
28 -       const u_int16_t attr_count;             /* number of nlattr's */
29 +       const uint16_t attr_count;              /* number of nlattr's */
30  };
32  struct nfnetlink_subsystem
33 @@ -76,7 +76,7 @@ extern int nfnetlink_subsys_unregister(c
34  extern int nfnetlink_has_listeners(unsigned int group);
35  extern int nfnetlink_send(struct sk_buff *skb, u32 pid, unsigned group, 
36                           int echo);
37 -extern int nfnetlink_unicast(struct sk_buff *skb, u_int32_t pid, int flags);
38 +extern int nfnetlink_unicast(struct sk_buff *skb, uint32_t pid, int flags);
40  #define MODULE_ALIAS_NFNL_SUBSYS(subsys) \
41         MODULE_ALIAS("nfnetlink-subsys-" __stringify(subsys))