mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-06 06:43:13 -04:00
staging: ks7010: reformat makro ps_confirm_wait_inc()
Reformat the makro ps_confirm_wait_inc() to fix several checkpatch
errors and warnings:
- ERROR: space required before the open brace '{'
- ERROR: space required before the open parenthesis '('
- ERROR: code indent should use tabs where possible
- ERROR: space required after that close brace '}'
- ERROR: space required before the open parenthesis '('
- WARNING: line over 80 characters
- WARNING: please, no spaces at the start of a line
Signed-off-by: Philipp Hoefflin <p.hoefflin@posteo.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
ec9d6dcefc
commit
0157403e8a
@@ -1294,10 +1294,11 @@ int hostif_data_request(struct ks_wlan_private *priv, struct sk_buff *packet)
|
||||
return result;
|
||||
}
|
||||
|
||||
#define ps_confirm_wait_inc(priv) do{if(atomic_read(&priv->psstatus.status) > PS_ACTIVE_SET){ \
|
||||
atomic_inc(&priv->psstatus.confirm_wait); \
|
||||
/* atomic_set(&priv->psstatus.status, PS_CONF_WAIT);*/ \
|
||||
} }while(0)
|
||||
#define ps_confirm_wait_inc(priv) do { \
|
||||
if (atomic_read(&priv->psstatus.status) > PS_ACTIVE_SET) { \
|
||||
atomic_inc(&priv->psstatus.confirm_wait); \
|
||||
/* atomic_set(&priv->psstatus.status, PS_CONF_WAIT);*/ \
|
||||
} } while (0)
|
||||
|
||||
static
|
||||
void hostif_mib_get_request(struct ks_wlan_private *priv,
|
||||
|
||||
Reference in New Issue
Block a user