diff options
author | Luis R. Rodriguez <mcgrof@do-not-panic.com> | 2013-11-13 18:54:02 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2013-11-25 20:52:12 +0100 |
commit | 4c7d3982a6e37831382b9ef90aa0dbadc0bf3a22 (patch) | |
tree | 4c27ee3a86f91783464daeb5353d11e22475dcff /net/wireless/reg.c | |
parent | mac80211: minstrels: spare numerous useless calls to get_random_bytes (diff) | |
download | linux-4c7d3982a6e37831382b9ef90aa0dbadc0bf3a22.tar.xz linux-4c7d3982a6e37831382b9ef90aa0dbadc0bf3a22.zip |
cfg80211: use enum nl80211_dfs_regions for dfs_region everywhere
u8 was used in some other places, just stick to the enum,
this forces us to express the values that are expected.
Signed-off-by: Luis R. Rodriguez <mcgrof@do-not-panic.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless/reg.c')
-rw-r--r-- | net/wireless/reg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/wireless/reg.c b/net/wireless/reg.c index 067c1f63a1ae..2796b622890f 100644 --- a/net/wireless/reg.c +++ b/net/wireless/reg.c @@ -2115,7 +2115,7 @@ static void print_rd_rules(const struct ieee80211_regdomain *rd) } } -bool reg_supported_dfs_region(u8 dfs_region) +bool reg_supported_dfs_region(enum nl80211_dfs_regions dfs_region) { switch (dfs_region) { case NL80211_DFS_UNSET: @@ -2130,7 +2130,7 @@ bool reg_supported_dfs_region(u8 dfs_region) } } -static void print_dfs_region(u8 dfs_region) +static void print_dfs_region(enum nl80211_dfs_regions dfs_region) { if (!dfs_region) return; |