Commit 50521aa8 authored by Johannes Berg's avatar Johannes Berg

cfg80211: fix BSS IE allocation comment

The comment about allocating the IEs together with
the BSS struct is no longer true, remove it. Also
fix a typo in the same area.
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 3146a7da
...@@ -715,11 +715,8 @@ cfg80211_inform_bss(struct wiphy *wiphy, ...@@ -715,11 +715,8 @@ cfg80211_inform_bss(struct wiphy *wiphy,
* Response frame, we need to pick one of the options and only use it * Response frame, we need to pick one of the options and only use it
* with the driver that does not provide the full Beacon/Probe Response * with the driver that does not provide the full Beacon/Probe Response
* frame. Use Beacon frame pointer to avoid indicating that this should * frame. Use Beacon frame pointer to avoid indicating that this should
* override the iies pointer should we have received an earlier * override the IEs pointer should we have received an earlier
* indication of Probe Response data. * indication of Probe Response data.
*
* The initial buffer for the IEs is allocated with the BSS entry and
* is located after the private area.
*/ */
ies = kmalloc(sizeof(*ies) + ielen, gfp); ies = kmalloc(sizeof(*ies) + ielen, gfp);
if (!ies) if (!ies)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment