diff options
author | Bob Copeland <me@bobcopeland.com> | 2013-01-03 00:09:46 -0500 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2013-01-04 07:51:22 -0500 |
commit | 75ea719cb4773b05cc48e741feb4e267522b9656 (patch) | |
tree | bba7fcd5dbd93e1b0ee078b33010d9f81955b55d | |
parent | ba23d2068d85f6616ea5f92320c04e87d4b9e141 (diff) |
mac80211: fix mesh_hwmp kerneldoc
One of the function names was wrong and some parameters were
missing.
Signed-off-by: Bob Copeland <me@bobcopeland.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
-rw-r--r-- | net/mac80211/mesh_hwmp.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net/mac80211/mesh_hwmp.c b/net/mac80211/mesh_hwmp.c index 47aeee2d8db1..9044296c8876 100644 --- a/net/mac80211/mesh_hwmp.c +++ b/net/mac80211/mesh_hwmp.c | |||
@@ -219,12 +219,14 @@ static void prepare_frame_for_deferred_tx(struct ieee80211_sub_if_data *sdata, | |||
219 | } | 219 | } |
220 | 220 | ||
221 | /** | 221 | /** |
222 | * mesh_send_path error - Sends a PERR mesh management frame | 222 | * mesh_path_error_tx - Sends a PERR mesh management frame |
223 | * | 223 | * |
224 | * @ttl: allowed remaining hops | ||
224 | * @target: broken destination | 225 | * @target: broken destination |
225 | * @target_sn: SN of the broken destination | 226 | * @target_sn: SN of the broken destination |
226 | * @target_rcode: reason code for this PERR | 227 | * @target_rcode: reason code for this PERR |
227 | * @ra: node this frame is addressed to | 228 | * @ra: node this frame is addressed to |
229 | * @sdata: local mesh subif | ||
228 | * | 230 | * |
229 | * Note: This function may be called with driver locks taken that the driver | 231 | * Note: This function may be called with driver locks taken that the driver |
230 | * also acquires in the TX path. To avoid a deadlock we don't transmit the | 232 | * also acquires in the TX path. To avoid a deadlock we don't transmit the |
@@ -350,6 +352,7 @@ static u32 airtime_link_metric_get(struct ieee80211_local *local, | |||
350 | * @sdata: local mesh subif | 352 | * @sdata: local mesh subif |
351 | * @mgmt: mesh management frame | 353 | * @mgmt: mesh management frame |
352 | * @hwmp_ie: hwmp information element (PREP or PREQ) | 354 | * @hwmp_ie: hwmp information element (PREP or PREQ) |
355 | * @action: type of hwmp ie | ||
353 | * | 356 | * |
354 | * This function updates the path routing information to the originator and the | 357 | * This function updates the path routing information to the originator and the |
355 | * transmitter of a HWMP PREQ or PREP frame. | 358 | * transmitter of a HWMP PREQ or PREP frame. |