diff options
author | Rajat Asthana <thisisrast7@gmail.com> | 2021-02-19 00:07:57 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-03-10 09:25:24 +0100 |
commit | 7964844ee51ef8e93d5051c2cdda8c6f9febad7b (patch) | |
tree | a50959c511fed466b72d1efbc5b1386b5f777024 /drivers/staging/wfx | |
parent | 021bbe0017f85886be429931921e3a798b38a503 (diff) | |
download | linux-7964844ee51ef8e93d5051c2cdda8c6f9febad7b.tar.gz linux-7964844ee51ef8e93d5051c2cdda8c6f9febad7b.tar.bz2 linux-7964844ee51ef8e93d5051c2cdda8c6f9febad7b.zip |
staging: wfx: Fix alignment style issue in sta.c
This change fixes a checkpatch error for "Alignment should match
open parenthesis".
Signed-off-by: Rajat Asthana <thisisrast7@gmail.com>
Link: https://lore.kernel.org/r/20210218183757.72995-1-thisisrast7@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wfx')
-rw-r--r-- | drivers/staging/wfx/sta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/wfx/sta.c b/drivers/staging/wfx/sta.c index 5585f9e876e1..8c57338efc71 100644 --- a/drivers/staging/wfx/sta.c +++ b/drivers/staging/wfx/sta.c @@ -193,7 +193,7 @@ int wfx_update_pm(struct wfx_vif *wvif) } int wfx_conf_tx(struct ieee80211_hw *hw, struct ieee80211_vif *vif, - u16 queue, const struct ieee80211_tx_queue_params *params) + u16 queue, const struct ieee80211_tx_queue_params *params) { struct wfx_dev *wdev = hw->priv; struct wfx_vif *wvif = (struct wfx_vif *)vif->drv_priv; |