Re: [PATCH 05/14] staging: most: enable configfs support

2019-03-23 Thread kbuild test robot
Hi Christian, Thank you for the patch! Yet something to improve: [auto build test ERROR on staging/staging-testing] [also build test ERROR on v5.1-rc1 next-20190322] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

Re: [PATCH 0/5] *** SUBJECT HERE ***

2019-03-23 Thread Matt Ranostay
You may want to change "*** SUBJECT HERE ***" in the future :) - Matt On Sat, Mar 23, 2019 at 5:53 AM Cristian Sicilia wrote: > > Some source refactoring, parameters aligment and camel case clearing. > > Replacement of bool to bitfield in a struct, but not found > the population to check if it

[PATCH v2 1/5] staging: iio: adc: Tab alignment

2019-03-23 Thread Cristian Sicilia
Aligned some parameters. Signed-off-by: Cristian Sicilia --- drivers/staging/iio/adc/ad7280a.c | 36 ++-- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/drivers/staging/iio/adc/ad7280a.c b/drivers/staging/iio/adc/ad7280a.c index d9df126..55b5879

[PATCH v2 4/5] staging: iio: adc: Adding temp var to improve readability

2019-03-23 Thread Cristian Sicilia
Creating a temporary variable to improve readability Signed-off-by: Cristian Sicilia --- drivers/staging/iio/adc/ad7280a.c | 55 ++- 1 file changed, 25 insertions(+), 30 deletions(-) diff --git a/drivers/staging/iio/adc/ad7280a.c

[PATCH v2 3/5] staging: iio: adc: Avoid precedence issues in macro

2019-03-23 Thread Cristian Sicilia
Enclosing parameter with parenthesis due to avoid possible precedence issue. Signed-off-by: Cristian Sicilia --- drivers/staging/iio/adc/ad7280a.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/staging/iio/adc/ad7280a.c b/drivers/staging/iio/adc/ad7280a.c

[PATCH v2 5/5] staging: iio: adc: Remove CamelCase notation

2019-03-23 Thread Cristian Sicilia
Fix CamelCase naming. Signed-off-by: Cristian Sicilia --- drivers/staging/iio/adc/ad7280a.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/staging/iio/adc/ad7280a.c b/drivers/staging/iio/adc/ad7280a.c index 5d848aa..c02454c 100644 ---

[PATCH v2 0/5] staging: iio: adc: Code refactoring and bool to bitfield change

2019-03-23 Thread Cristian Sicilia
Some source refactoring, parameters alignment and camel case clearing. Replacement of bool to bitfield in a struct, but not found the population to check if it is done correctly. Cristian Sicilia (5): staging: iio: adc: Tab alignment staging: iio: adc: Converted bool to bitfield format

[PATCH v2 2/5] staging: iio: adc: Converted bool to bitfield format

2019-03-23 Thread Cristian Sicilia
Changed bool format to bitfield format to save space. Signed-off-by: Cristian Sicilia --- The strange thing is that this struct seems not populated using a DTS binding function. --- drivers/staging/iio/adc/ad7192.h | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff

[no subject]

2019-03-23 Thread William J. Cunningham
>From bb04b0ca982b7042902fffe1377e0e38e83b402b Mon Sep 17 00:00:00 2001 From: Will Cunningham Date: Sat, 23 Mar 2019 12:54:34 -0400 Subject: [PATCH] Staging: emxx_udc: emxx_udc: Fixed a coding style error Removed unnecessary parentheses. Signed-off-by: Will Cunningham ---

[PATCH v4] staging: ralink-gdma: Use u32 over uint32_t

2019-03-23 Thread Bharath Vedartham
Fixes the checkpatch.pl warning: "Prefer u32 over uint32_t" Signed-off-by: Bharath Vedartham --- Changes since v3 - Fixed allignment issues. - Submitted a seperate patch to change unsigned to unsigned int. - One of the allignments crosses 80 characters in a line

[PATCH 1/5] staging: iio: adc: Tab alignment

2019-03-23 Thread Cristian Sicilia
Aligned some parameters. Signed-off-by: Cristian Sicilia --- drivers/staging/iio/adc/ad7280a.c | 36 ++-- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/drivers/staging/iio/adc/ad7280a.c b/drivers/staging/iio/adc/ad7280a.c index d9df126..55b5879

[PATCH 5/5] staging: iio: adc: Remove CamelCase notation

2019-03-23 Thread Cristian Sicilia
Signed-off-by: Cristian Sicilia --- drivers/staging/iio/adc/ad7280a.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/staging/iio/adc/ad7280a.c b/drivers/staging/iio/adc/ad7280a.c index 5d848aa..c02454c 100644 --- a/drivers/staging/iio/adc/ad7280a.c +++

[PATCH 2/5] staging: iio: adc: Converted bool to bitfield format

2019-03-23 Thread Cristian Sicilia
Changed bool format to bitfield format to save space. Signed-off-by: Cristian Sicilia --- The strange thing is that this struct seems not populated using a DTS binding function. --- drivers/staging/iio/adc/ad7192.h | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff

[PATCH 4/5] staging: iio: adc: Adding temp var to improve readability

2019-03-23 Thread Cristian Sicilia
Creating a temporary variable to improve readability Signed-off-by: Cristian Sicilia --- drivers/staging/iio/adc/ad7280a.c | 55 ++- 1 file changed, 25 insertions(+), 30 deletions(-) diff --git a/drivers/staging/iio/adc/ad7280a.c

[PATCH 3/5] staging: iio: adc: Avoid precedence issues in macro

2019-03-23 Thread Cristian Sicilia
Enclosing parameter with parenthesis due to avoid possible precedence issue. Signed-off-by: Cristian Sicilia --- drivers/staging/iio/adc/ad7280a.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/staging/iio/adc/ad7280a.c b/drivers/staging/iio/adc/ad7280a.c

[PATCH 0/5] *** SUBJECT HERE ***

2019-03-23 Thread Cristian Sicilia
Some source refactoring, parameters aligment and camel case clearing. Replacement of bool to bitfield in a struct, but not found the population to check if it is done correctly. Cristian Sicilia (5): staging: iio: adc: Tab alignment staging: iio: adc: Converted bool to bitfield format

[PATCH] staging: ralink-gdma: Convert unsigned to unsigned int

2019-03-23 Thread Bharath Vedartham
Fix the checkpatch.pl warning: "Use unsigned int instead of unsigned". Signed-off-by: Bharath Vedartham --- drivers/staging/ralink-gdma/ralink-gdma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/ralink-gdma/ralink-gdma.c

Hi

2019-03-23 Thread Eden Zuwa
Hello, My name is Miss Eden,i saw your profile and i love it,i think we can make it together,please i will like you to email me back through my email thus;so that i will send you my picture.so that we will discuss more about my interest,I will be waiting to receive your lovely reply soon