[PATCH] staging/lustre/llite: get rid of unused ll_super_blocks list

2015-08-08 Thread green
From: Oleg Drokin ll_super_blocks became unused quite a while ago with switch to the new CLIO code. So this patch removes the list, ll_sb_lock spinlock that guards it and superblock info ll_list linkage. Signed-off-by: Oleg Drokin --- drivers/staging/lustre/lustre/llite/llite_internal.h | 1 -

Re: [PATCH] staging/lustre: add annotations for user space pointers

2015-08-08 Thread Greg KH
On Sat, Aug 08, 2015 at 11:42:16PM +0300, Tomas Melin wrote: > user space input pointers need correct annotations. > > Signed-off-by: Tomas Melin > --- > drivers/staging/lustre/include/linux/libcfs/libcfs_ioctl.h | 4 ++-- > drivers/staging/lustre/lustre/libcfs/linux/linux-module.c | 6 +++--- >

[PATCH] staging/lustre: add annotations for user space pointers

2015-08-08 Thread Tomas Melin
user space input pointers need correct annotations. Signed-off-by: Tomas Melin --- drivers/staging/lustre/include/linux/libcfs/libcfs_ioctl.h | 4 ++-- drivers/staging/lustre/lustre/libcfs/linux/linux-module.c | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/st

[patch] iio: accel: sca3000: memory corruption in sca3000_read_first_n_hw_rb()

2015-08-08 Thread Dan Carpenter
"num_read" is in byte units but we are write u16s so we end up write twice as much as intended. Signed-off-by: Dan Carpenter diff --git a/drivers/staging/iio/accel/sca3000_ring.c b/drivers/staging/iio/accel/sca3000_ring.c index 23685e7..bd2c69f 100644 --- a/drivers/staging/iio/accel/sca3000_rin

[PATCH 2/2] Staging: lustre/lustre/ptlrpc: service.c: Fixed issue with global integer being initialized to 0

2015-08-08 Thread Daniel Machon
Fixed global integer initialization issue. Global variables should not be explicitly initialized to 0 or NULL. Signed-off-by: Daniel Machon --- drivers/staging/lustre/lustre/ptlrpc/service.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/lustre/lustre/ptlrpc/

[PATCH] Staging: lustre/lnet/selftest: framework.c: Fixed coding style issues

2015-08-08 Thread Daniel Machon
Fixed coding style issues where statement should be on the next line Signed-off-by: Daniel Machon --- drivers/staging/lustre/lnet/selftest/framework.c | 12 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/drivers/staging/lustre/lnet/selftest/framework.c b/drivers/stag

Re: [PATCH 1/1] Staging: media: davinci_vpfe: fix over 80 characters coding style issue.

2015-08-08 Thread Joe Perches
On Sat, 2015-08-08 at 08:42 -0700, Greg KH wrote: > Greg does not accept drivers/staging/media/* patches, You could change --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index 111a6b2..089c458 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -9742,6 +97

Re: [PATCH 1/1] Staging: media: davinci_vpfe: fix over 80 characters coding style issue.

2015-08-08 Thread Greg KH
On Sat, Aug 08, 2015 at 03:42:18PM +0530, Sudip Mukherjee wrote: > On Sat, Aug 08, 2015 at 01:55:02AM -0500, Junsu Shin wrote: > > > > On 08/06/2015 11:45 PM, Sudip Mukherjee wrote: > > > On Thu, Aug 06, 2015 at 09:55:54PM -0500, Junsu Shin wrote: > > > > > > > > Thanks for pointing it out. > >

Re: [PATCH] staging: iio_simple_dummy: Fix indentation errors

2015-08-08 Thread Jonathan Cameron
On 05/08/15 13:22, Daniel Baluta wrote: > On Wed, Aug 5, 2015 at 3:15 PM, Lars Svensson > wrote: >> Fixing indentation errors in >> drivers/staging/iio/iio_simple_dummy_events.c. >> >> Signed-off-by: Lars Svensson > > Good catch. > > Acked-by: Daniel Baluta > Thanks. Applied to the togreg bra

[PATCH v2] staging: lustre-libcfs: fix sparse warning

2015-08-08 Thread Patrick Boettcher
Fix sparse warnings of the following type: warning: symbol '' was not declared. Should it be static? Signed-off-by: Patrick Boettcher --- drivers/staging/lustre/include/linux/libcfs/libcfs.h | 13 + drivers/staging/lustre/lustre/libcfs/linux/linux-module.c | 2 -- drivers/

staging: wilc1000 Fixes for style errors/warnings

2015-08-08 Thread Chandra S Gorentla
This series fix some of the errors and warnings found using checkpatch.pl. ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

[PATCH 3/4] staging: wilc1000: Remove ' ' before quoted '\n'

2015-08-08 Thread Chandra S Gorentla
Fixes the checkpatch.pl warning - 'unnecessary whitespace before a quoted newline'. Signed-off-by: Chandra S Gorentla --- drivers/staging/wilc1000/linux_wlan.c | 20 +-- drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 42 +++ drivers/staging/wilc1000/

[PATCH 2/4] staging: wilc1000: Remove unused extern declarations

2015-08-08 Thread Chandra S Gorentla
'extern' declarations which are not referenced within the file are removed. Signed-off-by: Chandra S Gorentla --- drivers/staging/wilc1000/host_interface.c | 1 - drivers/staging/wilc1000/linux_wlan_sdio.c| 1 - drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 2 -- drivers/st

[PATCH 1/4] staging: wilc1000: Add space between the braces

2015-08-08 Thread Chandra S Gorentla
Inserted space between nested braces. This fixes the checkpatch.pl error - space required after that close brace '}'. Signed-off-by: Chandra S Gorentla --- drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/w

[PATCH 4/4] staging: wilc1000: Remove braces for single statement 'if' and 'else'

2015-08-08 Thread Chandra S Gorentla
Fixes the checkpatch.pl warning - braces {} are not necessary for any arm of this statement Signed-off-by: Chandra S Gorentla --- drivers/staging/wilc1000/coreconfigurator.c | 10 - drivers/staging/wilc1000/host_interface.c | 19 - drivers/staging/wilc1000/l

Re: [PATCH 1/1] Staging: media: davinci_vpfe: fix over 80 characters coding style issue.

2015-08-08 Thread Sudip Mukherjee
On Sat, Aug 08, 2015 at 01:55:02AM -0500, Junsu Shin wrote: > > On 08/06/2015 11:45 PM, Sudip Mukherjee wrote: > > On Thu, Aug 06, 2015 at 09:55:54PM -0500, Junsu Shin wrote: > > > > Thanks for pointing it out. > Again, this is a patch to the dm365_ipipe.c that fixes over 80 characters > warni

Re: [PATCH] Staging: media: davinci_vpfe: Fix over 80 characters coding style issue

2015-08-08 Thread Dan Carpenter
On Sat, Aug 08, 2015 at 01:30:48AM -0500, Junsu Shin wrote: > This is a patch to the dm365_ipipe.c that fixes over 80 characters warning > detected. > Signed-off-by: Junsu Shin Put a blank line before the Signed-off-by. regards, dan carpenter ___ dev