Commit 62058952 authored by Dilek Uzulmez's avatar Dilek Uzulmez Committed by Greg Kroah-Hartman

Staging: rtl8192u: Fix do not use // c99 comments.

This patch fixes "do not use // C99 comments" errors in ieee80211_module.c
Signed-off-by: default avatarDilek Uzulmez <dilekuzulmez@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d6413982
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
*******************************************************************************/ *******************************************************************************/
#include <linux/compiler.h> #include <linux/compiler.h>
//#include <linux/config.h> /* #include <linux/config.h> */
#include <linux/errno.h> #include <linux/errno.h>
#include <linux/if_arp.h> #include <linux/if_arp.h>
#include <linux/in6.h> #include <linux/in6.h>
...@@ -141,7 +141,7 @@ struct net_device *alloc_ieee80211(int sizeof_priv) ...@@ -141,7 +141,7 @@ struct net_device *alloc_ieee80211(int sizeof_priv)
spin_lock_init(&ieee->wpax_suitlist_lock); spin_lock_init(&ieee->wpax_suitlist_lock);
spin_lock_init(&ieee->bw_spinlock); spin_lock_init(&ieee->bw_spinlock);
spin_lock_init(&ieee->reorder_spinlock); spin_lock_init(&ieee->reorder_spinlock);
//added by WB /* added by WB */
atomic_set(&(ieee->atm_chnlop), 0); atomic_set(&(ieee->atm_chnlop), 0);
atomic_set(&(ieee->atm_swbw), 0); atomic_set(&(ieee->atm_swbw), 0);
...@@ -153,7 +153,7 @@ struct net_device *alloc_ieee80211(int sizeof_priv) ...@@ -153,7 +153,7 @@ struct net_device *alloc_ieee80211(int sizeof_priv)
ieee->ieee802_1x = 1; ieee->ieee802_1x = 1;
ieee->raw_tx = 0; ieee->raw_tx = 0;
//ieee->hwsec_support = 1; //defalt support hw security. //use module_param instead. //ieee->hwsec_support = 1; //defalt support hw security. //use module_param instead.
ieee->hwsec_active = 0; //disable hwsec, switch it on when necessary. ieee->hwsec_active = 0; /* disable hwsec, switch it on when necessary. */
ieee80211_softmac_init(ieee); ieee80211_softmac_init(ieee);
...@@ -164,7 +164,7 @@ struct net_device *alloc_ieee80211(int sizeof_priv) ...@@ -164,7 +164,7 @@ struct net_device *alloc_ieee80211(int sizeof_priv)
goto failed; goto failed;
} }
HTUpdateDefaultSetting(ieee); HTUpdateDefaultSetting(ieee);
HTInitializeHTInfo(ieee); //may move to other place. HTInitializeHTInfo(ieee); /* may move to other place. */
TSInitialize(ieee); TSInitialize(ieee);
for (i = 0; i < IEEE_IBSS_MAC_HASH_SIZE; i++) for (i = 0; i < IEEE_IBSS_MAC_HASH_SIZE; i++)
...@@ -176,7 +176,7 @@ struct net_device *alloc_ieee80211(int sizeof_priv) ...@@ -176,7 +176,7 @@ struct net_device *alloc_ieee80211(int sizeof_priv)
ieee->last_packet_time[i] = 0; ieee->last_packet_time[i] = 0;
} }
//These function were added to load crypte module autoly /* These function were added to load crypte module autoly */
ieee80211_tkip_null(); ieee80211_tkip_null();
ieee80211_wep_null(); ieee80211_wep_null();
ieee80211_ccmp_null(); ieee80211_ccmp_null();
...@@ -195,7 +195,7 @@ void free_ieee80211(struct net_device *dev) ...@@ -195,7 +195,7 @@ void free_ieee80211(struct net_device *dev)
{ {
struct ieee80211_device *ieee = netdev_priv(dev); struct ieee80211_device *ieee = netdev_priv(dev);
int i; int i;
//struct list_head *p, *q; /* struct list_head *p, *q; */
// del_timer_sync(&ieee->SwBwTimer); // del_timer_sync(&ieee->SwBwTimer);
kfree(ieee->pHTInfo); kfree(ieee->pHTInfo);
ieee->pHTInfo = NULL; ieee->pHTInfo = NULL;
...@@ -239,7 +239,7 @@ static int debug = \ ...@@ -239,7 +239,7 @@ static int debug = \
// IEEE80211_DL_REORDER| // IEEE80211_DL_REORDER|
// IEEE80211_DL_TRACE | // IEEE80211_DL_TRACE |
//IEEE80211_DL_DATA | //IEEE80211_DL_DATA |
IEEE80211_DL_ERR //awayls open this flags to show error out IEEE80211_DL_ERR /* awayls open this flags to show error out */
; ;
static struct proc_dir_entry *ieee80211_proc; static struct proc_dir_entry *ieee80211_proc;
......
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