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
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
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
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
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
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
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
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.
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
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
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
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 +
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
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
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
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-
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.
>
>
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
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
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
20 matches
Mail list logo