mac80211: clean up mesh RX path a bit more

Moves another ifdef into the sta_info header file in favour of
compiling more code even w/o CONFIG_MAC80211_MESH.

Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Cc: Luis Carlos Cobo <luisca@cozybit.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
Johannes Berg
2008-02-25 16:24:38 +01:00
committed by John W. Linville
parent c1edd987a4
commit d6d1a5a709
2 changed files with 14 additions and 11 deletions

View File

@@ -235,6 +235,14 @@ struct sta_info {
#endif
};
static inline enum plink_state sta_plink_state(struct sta_info *sta)
{
#ifdef CONFIG_MAC80211_MESH
return sta->plink_state;
#endif
return LISTEN;
}
/* Maximum number of concurrently registered stations */
#define MAX_STA_COUNT 2007