Re: [PATCH 0/7] de-stage SW_SYNC validation frawework

2016-07-24 Thread Greg Kroah-Hartman
On Mon, Jul 18, 2016 at 04:12:45PM -0300, Gustavo Padovan wrote: > Hi, > > Do you think there is time to get this in for 4.8? No, it was too late on my end, due to travel and vacation, sorry. I'll queue it up for 4.9-rc1. thanks, greg k-h ___ devel m

[GIT PULL] Staging/IIO driver patches for 4.8-rc1

2016-07-24 Thread Greg KH
The following changes since commit a99cde438de0c4c0cecc1d1af1a55a75b10bfdef: Linux 4.7-rc6 (2016-07-03 23:01:00 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/ tags/staging-4.8-rc1 for you to fetch changes up to 6c71ee3b6157f

Re: [PATCH 31/32] staging: android: ion: ion.c fixed a 80 character line limit coding style issue

2016-07-24 Thread Greg KH
On Sun, Jul 24, 2016 at 12:37:31AM -0700, Nadim almas wrote: > From: sarique > > fixed a coding style issue. What issue? > > Signed-off-by: Nadim almas Your From: and signed-off-by names do not match up :( And where are the other 31 patches in this series? thanks, greg k-h ___

[PATCH 3/3] staging: wilc1000: Reduce scope for a few variables in mac_ioctl()

2016-07-24 Thread SF Markus Elfring
From: Markus Elfring Date: Sun, 24 Jul 2016 21:45:37 +0200 Three local variables were used only within a single case branch. * Thus move the data type definition for "rssi" and "size" into the corresponding code block. * The variable "length" was not modified after its initialisation. Thus

[PATCH 2/3] staging: wilc1000: One function call less in mac_ioctl() after error detection

2016-07-24 Thread SF Markus Elfring
From: Markus Elfring Date: Sun, 24 Jul 2016 21:15:23 +0200 The kfree() function was called in two cases by the mac_ioctl() function during error handling even if the passed variable did not contain a pointer for a valid data item. Improve this implementation detail by the introduction of another

[PATCH 1/3] staging: wilc1000: Delete an unnecessary check before the function call "release_firmware"

2016-07-24 Thread SF Markus Elfring
From: Markus Elfring Date: Sun, 24 Jul 2016 21:00:20 +0200 The release_firmware() function tests whether its argument is NULL and then returns immediately. Thus the test around the call is not needed. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring ---

[PATCH 0/3] staging: wilc1000: Fine-tuning for two function implementations

2016-07-24 Thread SF Markus Elfring
From: Markus Elfring Further update suggestions were taken into account after a patch was applied from static source code analysis. Markus Elfring (3): Delete an unnecessary check before the function call "release_firmware" One function call less in mac_ioctl() after error detection Reduce

Re: [PATCH] staging: iio: ad5933: Return correct value for AD5933_OUT_RANGE.

2016-07-24 Thread Jonathan Cameron
On 21/07/16 16:23, Phil Turnbull wrote: > The 'break' statement after calling ad5933_cmd only breaks out of the > 'for' loop, which then unconditionally sets the return value to -EINVAL. > Move the initialisation of 'ret' so we return the correct value. > > Signed-off-by: Phil Turnbull As I have

[PATCH 31/32] staging: android: ion: ion.c fixed a 80 character line limit coding style issue

2016-07-24 Thread Nadim almas
From: sarique fixed a coding style issue. Signed-off-by: Nadim almas --- drivers/staging/android/ion/ion.c| 3 ++- drivers/staging/comedi/drivers/ssv_dnp.c | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/staging/android/ion/ion.c b/drivers/staging/andr