diff options
author | Johannes Berg <johannes.berg@intel.com> | 2015-10-15 10:16:09 -0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2015-10-15 10:17:07 -0400 |
commit | 8047d2616dc7ff47d34f5bc64835e060ccb5db1c (patch) | |
tree | 5b8a5acb02b6698ba5f9667cfba969f164109df0 /net/wireless/core.c | |
parent | 6f1f5d5f4dc39e579b3ac348277dd60ee9e44e08 (diff) |
cfg80211: fix gHz to GHz
There's no "g" prefix, only "G" (1e9) that was clearly intended here.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless/core.c')
-rw-r--r-- | net/wireless/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/wireless/core.c b/net/wireless/core.c index a83037da21b6..b0915515640e 100644 --- a/net/wireless/core.c +++ b/net/wireless/core.c | |||
@@ -639,7 +639,7 @@ int wiphy_register(struct wiphy *wiphy) | |||
639 | if (WARN_ON(!sband->n_channels)) | 639 | if (WARN_ON(!sband->n_channels)) |
640 | return -EINVAL; | 640 | return -EINVAL; |
641 | /* | 641 | /* |
642 | * on 60gHz band, there are no legacy rates, so | 642 | * on 60GHz band, there are no legacy rates, so |
643 | * n_bitrates is 0 | 643 | * n_bitrates is 0 |
644 | */ | 644 | */ |
645 | if (WARN_ON(band != IEEE80211_BAND_60GHZ && | 645 | if (WARN_ON(band != IEEE80211_BAND_60GHZ && |