summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTeodora Baluta <teobaluta@gmail.com>2013-10-21 23:37:16 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-10-28 21:17:55 (GMT)
commitfa520f01b5b729ccfab415fb406469bb31e9cbb9 (patch)
treeda49da01b38f99df2ae86d734868e4cb07ef22bd
parent9c1822d7380bf284bc608c1b769ff2318cffff7c (diff)
downloadlinux-fsl-qoriq-fa520f01b5b729ccfab415fb406469bb31e9cbb9.tar.xz
staging: rtl8187se: fix comments over 80 characters
This patch rearranges comments that are over 80 characters. Signed-off-by: Teodora Baluta <teobaluta@gmail.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/rtl8187se/ieee80211/ieee80211_tx.c16
1 files changed, 12 insertions, 4 deletions
diff --git a/drivers/staging/rtl8187se/ieee80211/ieee80211_tx.c b/drivers/staging/rtl8187se/ieee80211/ieee80211_tx.c
index 362673c..4c9ac43 100644
--- a/drivers/staging/rtl8187se/ieee80211/ieee80211_tx.c
+++ b/drivers/staging/rtl8187se/ieee80211/ieee80211_tx.c
@@ -185,7 +185,10 @@ int ieee80211_encrypt_fragment(
struct ieee80211_crypt_data* crypt = ieee->crypt[ieee->tx_keyidx];
int res;
- /*added to care about null crypt condition, to solve that system hangs when shared keys error*/
+ /*
+ * added to care about null crypt condition, to solve that system hangs
+ * when shared keys error
+ */
if (!crypt || !crypt->ops)
return -1;
@@ -203,10 +206,15 @@ int ieee80211_encrypt_fragment(
return -1;
}
#endif
- /* To encrypt, frame format is:
- * IV (4 bytes), clear payload (including SNAP), ICV (4 bytes) */
+ /*
+ * To encrypt, frame format is:
+ * IV (4 bytes), clear payload (including SNAP), ICV (4 bytes)
+ */
- /* PR: FIXME: Copied from hostap. Check fragmentation/MSDU/MPDU encryption. */
+ /*
+ * PR: FIXME: Copied from hostap. Check fragmentation/MSDU/MPDU
+ * encryption.
+ */
/* Host-based IEEE 802.11 fragmentation for TX is not yet supported, so
* call both MSDU and MPDU encryption functions from here. */
atomic_inc(&crypt->refcnt);