mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-05-07 05:53:06 +00:00
rtl8188eu: Change "){" to ") {"
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
c137ff21e5
commit
0a97479cee
46 changed files with 464 additions and 464 deletions
|
@ -70,7 +70,7 @@
|
|||
* if that's true, then detect them, and take measures.
|
||||
* Anyway, the measure is: define only ___ntohl as a macro instead,
|
||||
* and in a separate file, have
|
||||
* unsigned long inline ntohl(x){return ___ntohl(x);}
|
||||
* unsigned long inline ntohl(x) {return ___ntohl(x);}
|
||||
*
|
||||
* The same for constant arguments
|
||||
* __constant_ntohl(__u32 x)
|
||||
|
|
|
@ -92,8 +92,8 @@ u16 rtw_recv_select_queue(struct sk_buff *skb,
|
|||
void rtw_proc_init_one(struct net_device *dev);
|
||||
void rtw_proc_remove_one(struct net_device *dev);
|
||||
#else /* CONFIG_PROC_DEBUG */
|
||||
static void rtw_proc_init_one(struct net_device *dev){}
|
||||
static void rtw_proc_remove_one(struct net_device *dev){}
|
||||
static void rtw_proc_init_one(struct net_device *dev) {}
|
||||
static void rtw_proc_remove_one(struct net_device *dev) {}
|
||||
#endif /* CONFIG_PROC_DEBUG */
|
||||
|
||||
void rtw_ips_dev_unload(struct adapter *padapter);
|
||||
|
|
|
@ -577,7 +577,7 @@ __inline static void set_fwstate(struct mlme_priv *pmlmepriv, sint state)
|
|||
{
|
||||
pmlmepriv->fw_state |= state;
|
||||
/* FOR HW integration */
|
||||
if (_FW_UNDER_SURVEY==state){
|
||||
if (_FW_UNDER_SURVEY==state) {
|
||||
pmlmepriv->bScanInProcess = true;
|
||||
}
|
||||
}
|
||||
|
@ -586,7 +586,7 @@ __inline static void _clr_fwstate_(struct mlme_priv *pmlmepriv, sint state)
|
|||
{
|
||||
pmlmepriv->fw_state &= ~state;
|
||||
/* FOR HW integration */
|
||||
if (_FW_UNDER_SURVEY==state){
|
||||
if (_FW_UNDER_SURVEY==state) {
|
||||
pmlmepriv->bScanInProcess = false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue