staging: ks7010: use tabs for indentation
Fix all occurences of checkpatch "ERROR: code indent should use tabs where possible" errors in ks_hostif.c. 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
6f88006826
commit
ec9d6dcefc
@@ -23,11 +23,11 @@
|
||||
|
||||
/* macro */
|
||||
#define inc_smeqhead(priv) \
|
||||
(priv->sme_i.qhead = (priv->sme_i.qhead + 1) % SME_EVENT_BUFF_SIZE)
|
||||
(priv->sme_i.qhead = (priv->sme_i.qhead + 1) % SME_EVENT_BUFF_SIZE)
|
||||
#define inc_smeqtail(priv) \
|
||||
(priv->sme_i.qtail = (priv->sme_i.qtail + 1) % SME_EVENT_BUFF_SIZE)
|
||||
(priv->sme_i.qtail = (priv->sme_i.qtail + 1) % SME_EVENT_BUFF_SIZE)
|
||||
#define cnt_smeqbody(priv) \
|
||||
(((priv->sme_i.qtail + SME_EVENT_BUFF_SIZE) - (priv->sme_i.qhead)) % SME_EVENT_BUFF_SIZE)
|
||||
(((priv->sme_i.qtail + SME_EVENT_BUFF_SIZE) - (priv->sme_i.qhead)) % SME_EVENT_BUFF_SIZE)
|
||||
|
||||
#define KS_WLAN_MEM_FLAG (GFP_ATOMIC)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user