[PATCH] staging: wimax: i2400m: fix some incorrect type warnings

2021-02-12 Thread Ayush
2400m/tx.c:897:32:got unsigned int [usertype] wimax/i2400m/tx.c:899:15: warning: cast to restricted __le32 wimax/i2400m/tx.c:899:15: warning: cast from restricted __le16 Signed-off-by: Ayush --- compile tested on linux-next (tag: next-20210212). drivers/staging/wimax/i2400m/tx.c | 8 --

[PATCH] staging: rtl8723bs: fix pointer declaration style

2021-02-04 Thread Ayush
Fix some pointer declarations where '*' is not adjacent to data name. This fixes checkpatch.pl error: "POINTER_LOCATION: "foo * bar" should be "foo *bar"" Signed-off-by: Ayush --- compile tested only. drivers/staging/rtl8723bs/include/hal_intf.h | 8

[PATCH RFC] staging: comedi: fix coding style issues

2021-02-04 Thread Ayush
fix IF_0 and IF_1 warnings by checkpatch.pl Signed-off-by: Ayush --- compile tested only. drivers/staging/comedi/drivers/dt2801.c | 29 - 1 file changed, 29 deletions(-) diff --git a/drivers/staging/comedi/drivers/dt2801.c b/drivers/staging/comedi/drivers/dt2801.c

Re: [PATCH] staging: wimax/i2400m: fix coding style issues

2021-02-03 Thread Ayush
ause it will be deleted soon. > >> compile tested only (on next-20210202). > > Don't put this in the commit message. Put it under the --- cut off line > if you want. > Noted. Regards, Ayush ___ devel mailing list de...@linuxdri

Re: [PATCH] staging: wimax/i2400m: fix coding style issues

2021-02-03 Thread Ayush
u did not use your "real" name for the patch on either > the Signed-off-by: line, or the From: line (both of which have to > match). Please read the kernel file, Documentation/SubmittingPatches > for how to do this correctly. > Actually my legal name is only "Ayush&q

[PATCH] staging: wimax/i2400m: fix coding style issues

2021-02-03 Thread Ayush
- fix "multiple blank lines" issues. - fix a couple of parenthesis alignment issues. - fix no space before parenthesis issue. - fix no blank line after declaration. compile tested only (on next-20210202). Signed-off-by: Ayush --- drivers/staging/wimax/i2400m/debu

[PATCH] staging: media: atomisp: fix coding style issues in timer.c

2021-01-31 Thread Ayush
- Fix unneeded brace in if condition(also, brace was on next line). - Fix leading space warning before struct ia_css_clock_tick *curr_ts. compile tested only (on next-20210129) Signed-off-by: Ayush --- .../staging/media/atomisp/pci/runtime/timer/src/timer.c| 7 +++ 1 file changed, 3