diff options
Diffstat (limited to 'net/mac80211/mesh_pathtbl.c')
-rw-r--r-- | net/mac80211/mesh_pathtbl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/mac80211/mesh_pathtbl.c b/net/mac80211/mesh_pathtbl.c index edf167e3b8f3..dc51669e67d8 100644 --- a/net/mac80211/mesh_pathtbl.c +++ b/net/mac80211/mesh_pathtbl.c | |||
@@ -336,7 +336,7 @@ static void mesh_path_move_to_queue(struct mesh_path *gate_mpath, | |||
336 | } | 336 | } |
337 | 337 | ||
338 | 338 | ||
339 | static struct mesh_path *path_lookup(struct mesh_table *tbl, u8 *dst, | 339 | static struct mesh_path *mpath_lookup(struct mesh_table *tbl, u8 *dst, |
340 | struct ieee80211_sub_if_data *sdata) | 340 | struct ieee80211_sub_if_data *sdata) |
341 | { | 341 | { |
342 | struct mesh_path *mpath; | 342 | struct mesh_path *mpath; |
@@ -371,12 +371,12 @@ static struct mesh_path *path_lookup(struct mesh_table *tbl, u8 *dst, | |||
371 | */ | 371 | */ |
372 | struct mesh_path *mesh_path_lookup(u8 *dst, struct ieee80211_sub_if_data *sdata) | 372 | struct mesh_path *mesh_path_lookup(u8 *dst, struct ieee80211_sub_if_data *sdata) |
373 | { | 373 | { |
374 | return path_lookup(rcu_dereference(mesh_paths), dst, sdata); | 374 | return mpath_lookup(rcu_dereference(mesh_paths), dst, sdata); |
375 | } | 375 | } |
376 | 376 | ||
377 | struct mesh_path *mpp_path_lookup(u8 *dst, struct ieee80211_sub_if_data *sdata) | 377 | struct mesh_path *mpp_path_lookup(u8 *dst, struct ieee80211_sub_if_data *sdata) |
378 | { | 378 | { |
379 | return path_lookup(rcu_dereference(mpp_paths), dst, sdata); | 379 | return mpath_lookup(rcu_dereference(mpp_paths), dst, sdata); |
380 | } | 380 | } |
381 | 381 | ||
382 | 382 | ||