diff options
author | Johannes Berg <johannes.berg@intel.com> | 2013-11-19 09:19:36 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-11-19 16:39:06 -0500 |
commit | c2ebb908469d507ff400dad94efc755e6c799672 (patch) | |
tree | d5a8ef3abc30ed3fa6303bb72a3bf1ce5a84a61b /include | |
parent | 06fb555a273dc8ef0d876f4e864ad11cfcea63e0 (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.h | 2 |
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 | */ |
18 | struct genl_multicast_group { | 17 | struct 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; |