Re: [PATCH] staging: wfx: cleanup long lines in data_tx.c

2020-04-24 Thread Suraj Upadhyay
On Thu, Apr 23, 2020 at 09:29:28AM +, Jerome Pouiller wrote: > Hello Suraj, > > Thank you for your contribution. This would be my first patch to linux-kernel :) > On Wednesday 22 April 2020 17:39:00 CEST Suraj Upadhyay wrote: > > > > Break lines with length over 80 characters to conform > >

Re: [PATCH] staging: wfx: cleanup long lines in data_tx.c

2020-04-23 Thread Dan Carpenter
On Thu, Apr 23, 2020 at 09:29:28AM +, Jerome Pouiller wrote: > > req->data_flags.fc_offset = offset; > > if (tx_info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) > > req->data_flags.after_dtim = 1; > > @@ -517,7 +523,8 @@ void wfx_tx_confirm_cb(struct wfx_vif

Re: [PATCH] staging: wfx: cleanup long lines in data_tx.c

2020-04-23 Thread Jerome Pouiller
Hello Suraj, Thank you for your contribution. On Wednesday 22 April 2020 17:39:00 CEST Suraj Upadhyay wrote: > > Break lines with length over 80 characters to conform > to the linux coding style. Issue found by checkpatch. > > Signed-off-by: Suraj Upadhyay > --- >

[PATCH] staging: wfx: cleanup long lines in data_tx.c

2020-04-22 Thread Suraj Upadhyay
Break lines with length over 80 characters to conform to the linux coding style. Issue found by checkpatch. Signed-off-by: Suraj Upadhyay --- drivers/staging/wfx/data_tx.c | 25 + 1 file changed, 17 insertions(+), 8 deletions(-) diff --git