[PATCH] MAINTAINERS: move some real subsystems off of the staging mailing list

2021-03-13 Thread Greg Kroah-Hartman
The VME and Android drivers still have their MAINTAINERS entries pointing to the "driverdevel" mailing list, due to them having their codebase move out of the drivers/staging/ directory, but no one remembered to change the mailing list entries. Move them both to linux-kernel for lack of a more spe

[GIT PULL] Staging driver fixes for 5.12-rc3

2021-03-13 Thread Greg KH
The following changes since commit a38fd8748464831584a19438cbb3082b5a2dab15: Linux 5.12-rc2 (2021-03-05 17:33:41 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git tags/staging-5.12-rc3 for you to fetch changes up to 16d7586dccf8

[PATCH] staging: rtl8723bs: fix checkpatch warnings

2021-03-13 Thread hygoni
Fix checkpatch warnings of core/rtw_cmd.c in detail, unnecessary braces, space before tab and wrongly formatted comments. Issues found by checkpatch --- drivers/staging/rtl8723bs/core/rtw_cmd.c | 105 +++ 1 file changed, 50 insertions(+), 55 deletions(-) diff --git a/drivers/s

Re: [PATCH] staging: rtl8723bs: fix checkpatch warnings

2021-03-13 Thread Greg KH
On Sun, Mar 14, 2021 at 12:29:34AM +0900, hygoni wrote: > Fix checkpatch warnings of core/rtw_cmd.c > in detail, unnecessary braces, space before tab and wrongly formatted > comments. > Issues found by checkpatch > --- > drivers/staging/rtl8723bs/core/rtw_cmd.c | 105 +++ > 1

[PATCH] drivers: android: binder.c: Fix indentation of multi-line comment

2021-03-13 Thread Abhishek C
Fixed alignment of multi-line comment. Added a * for each line of the comment. Signed-off-by: Abhishek C --- drivers/android/binder.c | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/drivers/android/binder.c b/drivers/android/binder.c index c119736ca56a..700719c58147

[PATCH] staging:rtl8723bs:core:rtw_wlan_util:fixed indentation coding style issue

2021-03-13 Thread Shreya
Fixed the indentation of the else part of the conditional statement. Signed-off-by: Shreya Ajith --- drivers/staging/rtl8723bs/core/rtw_wlan_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8723bs/core/rtw_wlan_util.c b/drivers/staging/rtl8723bs/core

[PATCH] staging: andriod: ashmem: Declared file operation with const keyword

2021-03-13 Thread namratajanawade
Warning found by checkpatch.pl script. Signed-off-by: namratajanawade --- drivers/staging/android/ashmem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/android/ashmem.c b/drivers/staging/android/ashmem.c index d66a64e42273..7854fd410efa 100644 --- a/drivers

Re: [PATCH] staging: andriod: ashmem: Declared file operation with const keyword

2021-03-13 Thread B K Karthik
On Sat, Mar 13, 2021 at 10:57 PM namratajanawade wrote: > > Warning found by checkpatch.pl script. That doesn't tell what you did or why you did it. Please write an appropriate commit description and resend the patch. karthik ___ devel mailing list de.

[PATCH] staging: octeon-usb: fixed precedence issue

2021-03-13 Thread Selvakumar Elangovan
Added parenthesis around reg macro to avoid precedence issue identified by checkpatch.pl Signed-off-by: Selvakumar Elangovan --- drivers/staging/octeon-usb/octeon-hcd.h | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/staging/octeon-usb/octeon-hcd.h b

[PATCH v2 0/3] staging: wimax: fix style check warnings

2021-03-13 Thread Gabriele Modena
Fix style warnings reported by checkpatch.pl on op-rfkill.c by moving */ on a separate line in a block comment, adding a missing blank line after declarations, and reformatting a quoted string split across lines. Resubmitting so that each style warning is addressed in a separate commit. This pa

[PATCH v2 1/3] staging: wimax: fix block comment style check in op-rfkill.c

2021-03-13 Thread Gabriele Modena
This commit fixes the following checkpatch.pl warning: WARNING: Block comments use a trailing */ on a separate line +* considering the radios are all off. */ Signed-off-by: Gabriele Modena --- drivers/staging/wimax/op-rfkill.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion

[PATCH v2 2/3] staging: wimax: add a blank line after declaration in op-rfkill.c

2021-03-13 Thread Gabriele Modena
This commit fixes the following checkpatch.pl warning: WARNING: Missing a blank line after declarations + struct device *dev = wimax_dev_to_dev(wimax_dev); + d_fnstart(3, dev, "(wimax_dev %p)\n", wimax_dev); Signed-off-by: Gabriele Modena --- drivers/staging/wimax/op-rfkill.c | 1 +

[PATCH v2 3/3] staging: wimax: fix quoted string split across lines in op-rfkill.c

2021-03-13 Thread Gabriele Modena
This commit fixes the following checkpatch.pl warning: WARNING: quoted string split across lines + dev_err(dev, "WIMAX_GNL_RFKILL: can't find RFKILL_STATE " + "attribute\n"); Signed-off-by: Gabriele Modena --- drivers/staging/wimax/op-rfkill.c | 3 +-- 1 file

[PATCH] staging: vt6655: Fix camelcase

2021-03-13 Thread Madhumitha Prabakaran
Fix checkpatch.pl - Avoid CamelCase: Signed-off-by: Madhumitha Prabakaran --- drivers/staging/vt6655/baseband.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/vt6655/baseband.c b/drivers/staging/vt6655/baseband.c index 1aa675241599..d89163299172 10064

Re: [PATCH] staging: iio: ad9834: convert to device-managed functions in probe

2021-03-13 Thread Jonathan Cameron
On Wed, 10 Mar 2021 11:51:31 +0200 Alexandru Ardelean wrote: > This change converts the driver to use device-managed functions in the > probe function. For the clock and regulator disable, some > devm_add_action_or_reset() calls are required, and then > devm_iio_device_register() function can be

Re: [GIT PULL] Staging driver fixes for 5.12-rc3

2021-03-13 Thread pr-tracker-bot
The pull request you sent on Sat, 13 Mar 2021 16:03:34 +0100: > git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git > tags/staging-5.12-rc3 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/be61af330e09cfdde29fa5516b2ee015ebdc8bea Thank you! -- Deet-doot-

Re: [PATCH] staging: andriod: ashmem: Declared file operation with const keyword

2021-03-13 Thread Nathan Chancellor
On Sat, Mar 13, 2021 at 10:59:43PM +0530, B K Karthik wrote: > On Sat, Mar 13, 2021 at 10:57 PM namratajanawade > wrote: > > > > Warning found by checkpatch.pl script. > > That doesn't tell what you did or why you did it. Please write an > appropriate commit description and resend the patch. > >

[PATCH] staging: comedi: replace slash in name

2021-03-13 Thread Tong Zhang
request_irq() wont accept a name which contains slash so we need to repalce it with something else -- otherwise it will trigger a warning and the entry in /proc/irq/ will not be created [1.565966] name 'pci-das6402/16' [1.566149] WARNING: CPU: 0 PID: 184 at fs/proc/generic.c:180 __xlate_p

[PATCH] staging: comedi: cb_pcidas: replace slash in name

2021-03-13 Thread Tong Zhang
request_irq() wont accept a name which contains slash so we need to repalce it with something else -- otherwise it will trigger a warning and the entry in /proc/irq/ will not be created [1.630764] name 'pci-das1602/16' [1.630950] WARNING: CPU: 0 PID: 181 at fs/proc/generic.c:180 __xlate_p

Re: [PATCH] staging: octeon-usb: fixed precedence issue

2021-03-13 Thread Greg KH
On Sat, Mar 13, 2021 at 11:02:47PM +0530, Selvakumar Elangovan wrote: > Added parenthesis around reg macro to avoid precedence issue identified by > checkpatch.pl > > Signed-off-by: Selvakumar Elangovan > --- > drivers/staging/octeon-usb/octeon-hcd.h | 16 > 1 file changed, 8 in