aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2013-11-19 09:19:36 -0500
committerDavid S. Miller <davem@davemloft.net>2013-11-19 16:39:06 -0500
commitc2ebb908469d507ff400dad94efc755e6c799672 (patch)
treed5a8ef3abc30ed3fa6303bb72a3bf1ce5a84a61b /include
parent06fb555a273dc8ef0d876f4e864ad11cfcea63e0 (diff)
genetlink: remove family pointer from genl_multicast_group
There's no reason to have the family pointer there since it can just be passed internally where needed, so remove it. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/net/genetlink.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/net/genetlink.h b/include/net/genetlink.h
index 067569d1bc99..d8a8b1fd96c4 100644
--- a/include/net/genetlink.h
+++ b/include/net/genetlink.h
@@ -13,10 +13,8 @@
13 * @id: multicast group ID, assigned by the core, to use with 13 * @id: multicast group ID, assigned by the core, to use with
14 * genlmsg_multicast(). 14 * genlmsg_multicast().
15 * @list: list entry for linking 15 * @list: list entry for linking
16 * @family: pointer to family, need not be set before registering
17 */ 16 */
18struct genl_multicast_group { 17struct genl_multicast_group {
19 struct genl_family *family; /* private */
20 struct list_head list; /* private */ 18 struct list_head list; /* private */
21 char name[GENL_NAMSIZ]; 19 char name[GENL_NAMSIZ];
22 u32 id; 20 u32 id;