Re: [PATCH 1/4] staging: wilc1000: use runtime configuration for sdio oob interrupt

2019-11-25 Thread Julian Calaby
Hi Adham, On Sat, Nov 23, 2019 at 7:55 AM wrote: > > From: Ajay Singh > > Set SDIO Out-of-band interrupt configuration at run time by passing > parameter during module load. The OOB interrupt is a GPIO and this is an SDIO card, so why not just set the relevant pin in the devicetree and detect i

Re: [PATCH v2 1/4] iio: adc: Add support for AD7091R5 ADC

2019-11-25 Thread Ardelean, Alexandru
On Tue, 2019-10-29 at 18:29 +0200, Beniamin Bia wrote: > [External] > > From: Paul Cercueil > > AD7091 is 4-Channel, I2C, Ultra Low Power,12-Bit ADC. > > Datasheet: > Link: > https://www.analog.com/media/en/technical-documentation/data-sheets/ad7091r-5.pdf > > Signed-off-by: Paul Cercueil >

[PATCH RFC 3/6] staging: most: use angle brackets in include path

2019-11-25 Thread Christian Gromm
This patch replaces the double quotes in all include paths with angle brackets. Signed-off-by: Christian Gromm --- drivers/staging/most/cdev/cdev.c | 2 +- drivers/staging/most/dim2/dim2.c | 2 +- drivers/staging/most/i2c/i2c.c | 2 +- drivers/staging/most/net/net.c | 2 +- drivers/s

[PATCH RFC 6/6] staging: most: Documentation: move ABI description files out of staging area

2019-11-25 Thread Christian Gromm
This patch moves the ABI description fils sysfs-bus-most and configfs-most to the kernel's documentation folder. Signed-off-by: Christian Gromm --- Documentation/ABI/testing/configfs-most| 196 ++ Documentation/ABI/testing/sysfs-bus-most | 295 ++

[PATCH RFC 1/6] staging: most: fix improper SPDX-License comment style

2019-11-25 Thread Christian Gromm
This patch uses '/*' in the SPDX comment. Signed-off-by: Christian Gromm --- drivers/staging/most/core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/most/core.h b/drivers/staging/most/core.h index 49859ae..1380e75 100644 --- a/drivers/staging/most/core.h +

[PATCH RFC 2/6] staging: most: rename core.h to most.h

2019-11-25 Thread Christian Gromm
This patch renames the core header file core.h to most.h. The intention behind this is to have a meaningful name once this file is moved to the /include/linux directory. Signed-off-by: Christian Gromm --- drivers/staging/most/cdev/cdev.c | 2 +- drivers/staging/most/configfs.c| 2 +- d

[PATCH RFC 0/6] staging: most: move core module out of staging area

2019-11-25 Thread Christian Gromm
The MOST driver was pushed to the staging area with kernel 4.3. Since then it has encountered many refinements by the community and should be ready for an upstream audit and to be moved out of the staging area. Since the driver consists of multiple modules the core module is about to go first and t

[PATCH RFC 5/6] staging: most: Documentation: update ABI description

2019-11-25 Thread Christian Gromm
This patch updates the ABI description files to be in sync with current implementation. Signed-off-by: Christian Gromm --- .../most/Documentation/ABI/configfs-most.txt | 8 .../most/Documentation/ABI/sysfs-bus-most.txt | 24 +++--- 2 files changed, 3 insertio

[PATCH] staging: rtl8188eu: use break to exit while loop

2019-11-25 Thread Michael Straube
The variable bContinual in Efuse_PgPacketRead() is only used to break out of a while loop. Remove the variable and use break instead. Signed-off-by: Michael Straube --- drivers/staging/rtl8188eu/core/rtw_efuse.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/sta