aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/netlink.h
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2006-08-26 19:17:53 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2006-09-22 15:18:18 -0700
commitff5dfe736dd9f6c74b206aa77c0465dfd503bdb9 (patch)
tree32366a88470dc809f9aa4dd5dbcabd1c8d30b6e5 /include/net/netlink.h
parent[DCCP]: Introduce tx buffering (diff)
downloadlinux-dev-ff5dfe736dd9f6c74b206aa77c0465dfd503bdb9.tar.xz
linux-dev-ff5dfe736dd9f6c74b206aa77c0465dfd503bdb9.zip
[NETLINK]: remove third bogus argument from NLA_PUT_FLAG
This patch removes the 'value' argument from NLA_PUT_FLAG which is unused anyway. The documentation comment was already correct so it doesn't need an update :) Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/netlink.h')
-rw-r--r--include/net/netlink.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/netlink.h b/include/net/netlink.h
index 47044da167c5..bcb27e3a312e 100644
--- a/include/net/netlink.h
+++ b/include/net/netlink.h
@@ -828,7 +828,7 @@ static inline int nla_put_msecs(struct sk_buff *skb, int attrtype,
#define NLA_PUT_STRING(skb, attrtype, value) \
NLA_PUT(skb, attrtype, strlen(value) + 1, value)
-#define NLA_PUT_FLAG(skb, attrtype, value) \
+#define NLA_PUT_FLAG(skb, attrtype) \
NLA_PUT(skb, attrtype, 0, NULL)
#define NLA_PUT_MSECS(skb, attrtype, jiffies) \