The recent code from Luis is an #ifdef hell and contains lots of code that's stuffed into the wrong file making a whole bunch of things needlessly non-static, and besides, what is it doing in core.c?? Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
14 lines
317 B
C
14 lines
317 B
C
#ifndef __NET_WIRELESS_REG_H
|
|
#define __NET_WIRELESS_REG_H
|
|
|
|
extern struct mutex cfg80211_reg_mutex;
|
|
bool is_world_regdom(char *alpha2);
|
|
bool reg_is_valid_request(char *alpha2);
|
|
|
|
int regulatory_init(void);
|
|
void regulatory_exit(void);
|
|
|
|
int set_regdom(struct ieee80211_regdomain *rd);
|
|
|
|
#endif /* __NET_WIRELESS_REG_H */
|