@@ -2224,26 +2224,24 @@ static struct cfg80211_ops vwifi_cfg_ops = {
2224
2224
};
2225
2225
2226
2226
/* Macro for defining 2GHZ channel array */
2227
- #define CHAN_2GHZ (channel , freq ) \
2228
- { \
2229
- .band = NL80211_BAND_2GHZ, \
2230
- .hw_value = (channel), \
2231
- .center_freq = (freq), \
2227
+ #define CHAN_2GHZ (channel , freq ) \
2228
+ { \
2229
+ .band = NL80211_BAND_2GHZ, .hw_value = (channel), \
2230
+ .center_freq = (freq), \
2232
2231
}
2233
2232
2234
- /* Macro for defining 5GHZ channel array */
2235
- #define CHAN_5GHZ (channel ) \
2236
- { \
2237
- .band = NL80211_BAND_5GHZ, \
2238
- .hw_value = (channel), \
2239
- .center_freq = 5000 + (5 * (channel)), \
2233
+ /* Macro for defining 5GHZ channel array */
2234
+ #define CHAN_5GHZ (channel ) \
2235
+ { \
2236
+ .band = NL80211_BAND_5GHZ, .hw_value = (channel), \
2237
+ .center_freq = 5000 + (5 * (channel)), \
2240
2238
}
2241
2239
2240
+
2242
2241
/* Macro for defining rate table */
2243
- #define RATE_ENT (_rate , _hw_value ) \
2244
- { \
2245
- .bitrate = (_rate), \
2246
- .hw_value = (_hw_value), \
2242
+ #define RATE_ENT (_rate , _hw_value ) \
2243
+ { \
2244
+ .bitrate = (_rate), .hw_value = (_hw_value), \
2247
2245
}
2248
2246
2249
2247
/* Array of "supported" channels in 2GHz band. It is required for wiphy. */
0 commit comments