Skip to content

Commit

Permalink
batman-adv: Fix names for kernel-doc blocks
Browse files Browse the repository at this point in the history
kernel-doc can only correctly identify the documented function or struct
when the name in the first kernel-doc line references it. But some of the
kernel-doc blocks referenced a different function/struct then it actually
documented.

Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
  • Loading branch information
Sven Eckelmann authored and Simon Wunderlich committed Feb 6, 2021
1 parent 576fb67 commit 25d81f9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion net/batman-adv/distributed-arp-table.c
Original file line number Diff line number Diff line change
Expand Up @@ -1564,7 +1564,7 @@ static int batadv_dat_get_dhcp_message_type(struct sk_buff *skb)
}

/**
* batadv_dat_get_dhcp_yiaddr() - get yiaddr from a DHCP packet
* batadv_dat_dhcp_get_yiaddr() - get yiaddr from a DHCP packet
* @skb: the DHCP packet to parse
* @buf: a buffer to store the yiaddr in
*
Expand Down
2 changes: 1 addition & 1 deletion net/batman-adv/multicast.c
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ batadv_mcast_bridge_log(struct batadv_priv *bat_priv,
}

/**
* batadv_mcast_flags_logs() - output debug information about mcast flag changes
* batadv_mcast_flags_log() - output debug information about mcast flag changes
* @bat_priv: the bat priv with all the soft interface information
* @flags: TVLV flags indicating the new multicast state
*
Expand Down
4 changes: 2 additions & 2 deletions net/batman-adv/netlink.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ static int batadv_netlink_mesh_fill_ap_isolation(struct sk_buff *msg,
}

/**
* batadv_option_set_ap_isolation() - Set ap_isolation from genl msg
* batadv_netlink_set_mesh_ap_isolation() - Set ap_isolation from genl msg
* @attr: parsed BATADV_ATTR_AP_ISOLATION_ENABLED attribute
* @bat_priv: the bat priv with all the soft interface information
*
Expand Down Expand Up @@ -757,7 +757,7 @@ batadv_netlink_tp_meter_start(struct sk_buff *skb, struct genl_info *info)
}

/**
* batadv_netlink_tp_meter_start() - Cancel a running tp_meter session
* batadv_netlink_tp_meter_cancel() - Cancel a running tp_meter session
* @skb: received netlink message
* @info: receiver information
*
Expand Down
2 changes: 1 addition & 1 deletion net/batman-adv/tp_meter.c
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ static u32 batadv_tp_cwnd(u32 base, u32 increment, u32 min)
}

/**
* batadv_tp_updated_cwnd() - update the Congestion Windows
* batadv_tp_update_cwnd() - update the Congestion Windows
* @tp_vars: the private data of the current TP meter session
* @mss: maximum segment size of transmission
*
Expand Down
3 changes: 2 additions & 1 deletion net/batman-adv/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,8 @@ struct batadv_hard_iface {
};

/**
* struct batadv_orig_ifinfo - B.A.T.M.A.N. IV private orig_ifinfo members
* struct batadv_orig_ifinfo_bat_iv - B.A.T.M.A.N. IV private orig_ifinfo
* members
*/
struct batadv_orig_ifinfo_bat_iv {
/**
Expand Down

0 comments on commit 25d81f9

Please sign in to comment.