[PATCH 3/3] staging: dgnc: fix Logical continuations.

2016-03-28 Thread Daeseok Youn
fix checkpatch.pl warning about 'Logical continuations should be on the previous line' Signed-off-by: Daeseok Youn --- drivers/staging/dgnc/dgnc_neo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/dgnc/dgnc_neo.c

[PATCH 1/3] staging: dgnc: remove parenthesis around the CONST |

2016-03-28 Thread Daeseok Youn
remove parenthesis around the CONST | CONST. It will be also fixed checkpatch.pl warning about "Alignment should match open parenthesis" becasue parenthesis were removed by this patch. Signed-off-by: Daeseok Youn --- drivers/staging/dgnc/dgnc_neo.c | 26

Parcel código de acompanhamento

2016-03-28 Thread Collins Helms
Seu pendente de pagamento herança parte foi aprovado e o seu cheque de pagamento parte de US $ 2,000,000,00 está pronta para ser navio para você agora, Responder para o seu Parcel código de acompanhamento ___ devel mailing list

[PATCH] staging: skein: Convert local rotl_64 to kernel's rol64

2016-03-28 Thread Joe Perches
Remove the local inline and use the generic kernel rol64 instead. Miscellanea: o Added a newline between a multiple line macro for consistency with the other multiple line macros Signed-off-by: Joe Perches --- drivers/staging/skein/skein_base.h | 5 -

Re: [PATCH] dma-buf: Update docs for SYNC ioctl

2016-03-28 Thread Tiago Vignatti
On 03/23/2016 12:42 PM, Chris Wilson wrote: On Wed, Mar 23, 2016 at 04:32:59PM +0100, David Herrmann wrote: Hi On Wed, Mar 23, 2016 at 12:56 PM, Chris Wilson wrote: On Wed, Mar 23, 2016 at 12:30:42PM +0100, David Herrmann wrote: My question was rather about why we

[PATCH] Staging: android: change memory allocation style in ion.c

2016-03-28 Thread Ben Marsh
Chnages memory allocation style in order to silence a checkpatch.pl warning. Signed-off-by: Ben Marsh --- drivers/staging/android/ion/ion.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/staging/android/ion/ion.c

Re: [RFC PATCH v1 1/9] selftest: sync: basic tests for sw_sync framework

2016-03-28 Thread Emil Velikov
On 28 March 2016 at 13:20, Emilio López wrote: > Hi, > > El 28/03/16 a las 08:56, Emil Velikov escribió: >> >> Hi Emilio, >> >> On 9 March 2016 at 15:28, Emilio López >> wrote: >>> >>> These tests are based on the libsync test suite

Re: [RFC PATCH v1 9/9] selftest: sync: disable tests that rely on not yet defined behaviour

2016-03-28 Thread Emilio López
El 09/03/16 a las 13:14, Shuah Khan escribió: On 03/09/2016 08:29 AM, Emilio López wrote: One of the tests rely on a behaviour only observed on the driver currently in use in Android. Disable it here until the behaviour is implemented or it is decided it should not be implemented on the driver

Re: [RFC PATCH v1 0/9] Tests for sync infrastructure

2016-03-28 Thread Emilio López
Hi, I somehow missed these emails back in the day, sorry for the delay in replying. El 09/03/16 a las 13:13, Shuah Khan escribió: On 03/09/2016 08:28 AM, Emilio López wrote: Hello everyone, This is a series of tests to exercise the sync kernel infrastructure. It is meant to be a test suite

Re: [RFC PATCH v1 1/9] selftest: sync: basic tests for sw_sync framework

2016-03-28 Thread Emilio López
Hi, El 28/03/16 a las 08:56, Emil Velikov escribió: Hi Emilio, On 9 March 2016 at 15:28, Emilio López wrote: These tests are based on the libsync test suite from Android. This commit lays the ground for future tests, as well as includes tests for a variety of

Re: [PATCH 3/3] drm: bridge: anx78xx: Add anx78xx bridge driver support.

2016-03-28 Thread Emil Velikov
Hi all, On 24 March 2016 at 11:28, Dan Carpenter wrote: > On Thu, Mar 24, 2016 at 11:41:46AM +0100, Enric Balletbo i Serra wrote: >> + /* Map slave addresses of ANX7814 */ >> + for (i = 0; i < I2C_NUM_ADDRESSES; i++) { >> + anx78xx->i2c_dummy[i] =

Re: [RFC PATCH v1 1/9] selftest: sync: basic tests for sw_sync framework

2016-03-28 Thread Emil Velikov
Hi Emilio, On 9 March 2016 at 15:28, Emilio López wrote: > These tests are based on the libsync test suite from Android. > This commit lays the ground for future tests, as well as includes > tests for a variety of basic allocation commands. > > Signed-off-by:

Re: [PATCH] staging: iio: convert bare unsigned usage to unsigned int

2016-03-28 Thread Jonathan Cameron
On 26/03/16 19:58, Joe Perches wrote: > On Sat, 2016-03-26 at 12:50 -0700, Alison Schofield wrote: >> Use kernel preferred unsigned int declaration style. >> >> Patch created using: >> git ls-files drivers/staging/iio | \ >> xargs ./scripts/checkpatch.pl -f --fix-inplace --types=unspecified_int >>