Message ID | 153297700266.4874.12439168003972242663.stgit@potku.adurom.net (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | ath10k: fix parenthesis alignment | expand |
Kalle Valo <kvalo@codeaurora.org> wrote: > These were recently introduced and found by checkpatch: > > drivers/net/wireless/ath/ath10k/mac.c:6118: Alignment should match open parenthesis > drivers/net/wireless/ath/ath10k/mac.c:6121: Alignment should match open parenthesis > drivers/net/wireless/ath/ath10k/mac.c:6124: Alignment should match open parenthesis > > Signed-off-by: Kalle Valo <kvalo@codeaurora.org> Patch applied to ath-next branch of ath.git, thanks. ebfac1d0c166 ath10k: fix parenthesis alignment
diff --git a/drivers/net/wireless/ath/ath10k/mac.c b/drivers/net/wireless/ath/ath10k/mac.c index f068e2b9eacc..b6830fa16e99 100644 --- a/drivers/net/wireless/ath/ath10k/mac.c +++ b/drivers/net/wireless/ath/ath10k/mac.c @@ -6107,13 +6107,13 @@ static void ath10k_sta_rc_update_wk(struct work_struct *wk) mode = chan_to_phymode(&def); ath10k_dbg(ar, ATH10K_DBG_MAC, "mac update sta %pM peer bw %d phymode %d\n", - sta->addr, bw, mode); + sta->addr, bw, mode); err = ath10k_wmi_peer_set_param(ar, arvif->vdev_id, sta->addr, - WMI_PEER_PHYMODE, mode); + WMI_PEER_PHYMODE, mode); if (err) { ath10k_warn(ar, "failed to update STA %pM peer phymode %d: %d\n", - sta->addr, mode, err); + sta->addr, mode, err); goto exit; }
These were recently introduced and found by checkpatch: drivers/net/wireless/ath/ath10k/mac.c:6118: Alignment should match open parenthesis drivers/net/wireless/ath/ath10k/mac.c:6121: Alignment should match open parenthesis drivers/net/wireless/ath/ath10k/mac.c:6124: Alignment should match open parenthesis Signed-off-by: Kalle Valo <kvalo@codeaurora.org> --- drivers/net/wireless/ath/ath10k/mac.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)