linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] staging/wlan-ng: Explicitly set some fields in cfg80211 interface
@ 2010-08-11 17:16 Karl Relton
  0 siblings, 0 replies; only message in thread
From: Karl Relton @ 2010-08-11 17:16 UTC (permalink / raw)
  To: Greg KH; +Cc: linux-kernel, linux-wireless

Greg

Now that the wlan-ng driver has been switched to cfg80211 in mainline,
can this small patch be forwarded also, to catch up with some new fields
that have gone into the cfg80211 api also in this cycle.

Thanks
Karl





Explicitly set some fields in cfg80211 interface

Signed-off-by: Karl Relton <karllinuxtest.relton@ntlworld.com>

---

The cfg80211 api has introduced a few new fields. Rather than assume
what cfg80211 api does by default, set these explicitly.


--- a/drivers/staging/wlan-ng/cfg80211.c	2010-08-11 18:04:27.000000000
+0100
+++ b/drivers/staging/wlan-ng/cfg80211.c	2010-07-07 10:17:27.000000000
+0100
@@ -214,6 +214,7 @@ int prism2_get_key(struct wiphy *wiphy, 
 	} else return -ENOENT;
 	params.key_len = len;
 	params.key = wlandev->wep_keys[key_index];
+	params.seq_len = 0;
 
 	callback(cookie, &params);
 	return 0;
@@ -709,6 +710,8 @@ struct wiphy *wlan_create_wiphy(struct d
 	priv->band.n_channels = ARRAY_SIZE(prism2_channels);
 	priv->band.bitrates = priv->rates;
 	priv->band.n_bitrates = ARRAY_SIZE(prism2_rates);
+	priv->band.band = IEEE80211_BAND_2GHZ;
+	priv->band.ht_cap.ht_supported = false;
 	wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band;
 
 	set_wiphy_dev(wiphy, dev);



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-08-11 17:51 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-08-11 17:16 [PATCH] staging/wlan-ng: Explicitly set some fields in cfg80211 interface Karl Relton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).