mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
staging: wlan-ng: Fixed more comments
Fixed more comment issues Signed-off-by: Gavin O'Leary <gavinoleary3@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4f9de774a6
commit
35028fe1a6
1 changed files with 8 additions and 4 deletions
|
@ -239,7 +239,9 @@ static int prism2_del_key(struct wiphy *wiphy, struct net_device *dev,
|
|||
int result = 0;
|
||||
|
||||
/* There is no direct way in the hardware (AFAIK) of removing
|
||||
a key, so we will cheat by setting the key to a bogus value */
|
||||
* a key, so we will cheat by setting the key to a bogus value
|
||||
*/
|
||||
|
||||
/* send key to driver */
|
||||
switch (key_index) {
|
||||
case 0:
|
||||
|
@ -561,8 +563,9 @@ static int prism2_connect(struct wiphy *wiphy, struct net_device *dev,
|
|||
}
|
||||
|
||||
/* Assume we should set privacy invoked and exclude unencrypted
|
||||
We could possibly use sme->privacy here, but the assumption
|
||||
seems reasonable anyway */
|
||||
* We could possible use sme->privacy here, but the assumption
|
||||
* seems reasonable anyways
|
||||
*/
|
||||
result = prism2_domibset_uint32(wlandev,
|
||||
DIDmib_dot11smt_dot11PrivacyTable_dot11PrivacyInvoked,
|
||||
P80211ENUM_truth_true);
|
||||
|
@ -577,7 +580,8 @@ static int prism2_connect(struct wiphy *wiphy, struct net_device *dev,
|
|||
|
||||
} else {
|
||||
/* Assume we should unset privacy invoked
|
||||
and exclude unencrypted */
|
||||
* and exclude unencrypted
|
||||
*/
|
||||
result = prism2_domibset_uint32(wlandev,
|
||||
DIDmib_dot11smt_dot11PrivacyTable_dot11PrivacyInvoked,
|
||||
P80211ENUM_truth_false);
|
||||
|
|
Loading…
Reference in a new issue