diff options
author | John Whitmore <johnfwhitmore@gmail.com> | 2018-10-07 22:40:21 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-10-09 15:26:04 +0200 |
commit | 98d48ef26313b5bd2e5c6f87a3587e0ce3ce8b57 (patch) | |
tree | 7aaf096f36daa657613144b9b124713808c6f4ec /drivers/staging/rtl8192u | |
parent | 31bd9b21dcf43ba14146dd7f8f2d43931f732c10 (diff) | |
download | blackbird-op-linux-98d48ef26313b5bd2e5c6f87a3587e0ce3ce8b57.tar.gz blackbird-op-linux-98d48ef26313b5bd2e5c6f87a3587e0ce3ce8b57.zip |
staging:rtl8192u: Correct code indentation - Style
Rewrite code block to correct the indentation of code. This clears the
resulting checkpatch issue.
This is a coding style change which should not impact runtime code
execution.
Signed-off-by: John Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8192u')
-rw-r--r-- | drivers/staging/rtl8192u/ieee80211/ieee80211_module.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/rtl8192u/ieee80211/ieee80211_module.c b/drivers/staging/rtl8192u/ieee80211/ieee80211_module.c index 88db6fc12157..0385496d598f 100644 --- a/drivers/staging/rtl8192u/ieee80211/ieee80211_module.c +++ b/drivers/staging/rtl8192u/ieee80211/ieee80211_module.c @@ -172,9 +172,9 @@ struct net_device *alloc_ieee80211(int sizeof_priv) INIT_LIST_HEAD(&ieee->ibss_mac_hash[i]); for (i = 0; i < 17; i++) { - ieee->last_rxseq_num[i] = -1; - ieee->last_rxfrag_num[i] = -1; - ieee->last_packet_time[i] = 0; + ieee->last_rxseq_num[i] = -1; + ieee->last_rxfrag_num[i] = -1; + ieee->last_packet_time[i] = 0; } /* These function were added to load crypte module autoly */ |