[PATCH] hp100: Move 100BaseVG AnyLAN driver to staging

2019-10-31 Thread Joe Perches
100BaseVG AnyLAN hasn't been useful since 1996 or so and even then didn't sell many devices. It's unlikely any are still in use. Move the driver to staging with the intent of removing it altogether one day. Signed-off-by: Joe Perches --- MAINTAINERS | 4 ++--

[PATCH v3] dt-bindings: iio: accel: add binding documentation for ADIS16240

2019-10-31 Thread Rodrigo Carvalho
This patch add device tree binding documentation for ADIS16240. Signed-off-by: Rodrigo Ribeiro Carvalho --- V3: - Remove spi-cpol and spi-cpha field. They don't seem necessary .../bindings/iio/accel/adi,adis16240.yaml | 51 +++ 1 file changed, 51 insertions(+) create

[PATCH v4 3/3] staging: rts5208: Eliminate the use of Camel Case in file sd.h

2019-10-31 Thread Gabriela Bittencourt
Cleans up checks of "Avoid CamelCase" in file sd.h Even though the constant "DCM_LOW_FREQUENCY_MODE_SET" is defined and never used, it's useful to keep it because it documents the device. Signed-off-by: Gabriela Bittencourt --- Changes in v4: - Explain the reason of keeping a constant that is

[PATCH v4 2/3] staging: rts5208: Eliminate the use of Camel Case in files xd.{h, c}

2019-10-31 Thread Gabriela Bittencourt
Cleans up checks of "Avoid CamelCase" in files xd.{h,c} Acked-by: Julia Lawall Signed-off-by: Gabriela Bittencourt --- drivers/staging/rts5208/xd.c | 8 drivers/staging/rts5208/xd.h | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/staging/rts5208/xd.c

[PATCH v4 1/3] staging: rts5208: Eliminate the use of Camel Case in files ms.{h, c}

2019-10-31 Thread Gabriela Bittencourt
Cleans up checks of "Avoid CamelCase" in files ms.{h,c} Signed-off-by: Gabriela Bittencourt --- Changes in v2: - substitute variables in lower case to upper case --- drivers/staging/rts5208/ms.c | 86 ++-- drivers/staging/rts5208/ms.h | 70

[PATCH v4 0/3] staging: rts5208: Eliminate the use of Camel Case

2019-10-31 Thread Gabriela Bittencourt
Cleans up checks of "Avoid CamelCase" in tree rts5208 Changes in v4: - Substitute constants in lower case to upper case

Re: [PATCH] hp100: Move 100BaseVG AnyLAN driver to staging

2019-10-31 Thread David Miller
From: Joe Perches Date: Thu, 31 Oct 2019 11:23:37 -0700 > 100BaseVG AnyLAN hasn't been useful since 1996 or so and even then > didn't sell many devices. It's unlikely any are still in use. > > Move the driver to staging with the intent of removing it altogether > one day. > > Signed-off-by:

Re: [RFC] errno.h: Provide EFSCORRUPTED for everybody

2019-10-31 Thread Theodore Y. Ts'o
On Wed, Oct 30, 2019 at 09:07:33PM -0400, Valdis Kletnieks wrote: > Three questions: (a) ACK/NAK on this patch, (b) should it be all in one > patch, or one to add to errno.h and 6 patches for 6 filesystems?), and > (c) if one patch, who gets to shepherd it through? Acked-by: Theodore Ts'o

Re: [PATCH] hp100: Move 100BaseVG AnyLAN driver to staging

2019-10-31 Thread Jaroslav Kysela
Dne 31. 10. 19 v 19:23 Joe Perches napsal(a): 100BaseVG AnyLAN hasn't been useful since 1996 or so and even then didn't sell many devices. It's unlikely any are still in use. Move the driver to staging with the intent of removing it altogether one day. Signed-off-by: Joe Perches Acked-by:

Re: [RFC] errno.h: Provide EFSCORRUPTED for everybody

2019-10-31 Thread Jan Kara
On Wed 30-10-19 21:07:33, Valdis Kletnieks wrote: > Three questions: (a) ACK/NAK on this patch, (b) should it be all in one > patch, or one to add to errno.h and 6 patches for 6 filesystems?), and > (c) if one patch, who gets to shepherd it through? > > > There's currently 6 filesystems that

Re: [PATCH v2 6/6] staging: exfat: replace kmalloc with kmalloc_array

2019-10-31 Thread Roi Martin
> > diff --git a/drivers/staging/exfat/exfat_core.c > > b/drivers/staging/exfat/exfat_core.c > > index f71235c6a338..f4f82aecc05d 100644 > > --- a/drivers/staging/exfat/exfat_core.c > > +++ b/drivers/staging/exfat/exfat_core.c > > @@ -713,8 +713,8 @@ static s32 __load_upcase_table(struct

Re: [PATCH v2 6/6] staging: exfat: replace kmalloc with kmalloc_array

2019-10-31 Thread Dan Carpenter
On Thu, Oct 31, 2019 at 01:31:39PM +0100, Roi Martin wrote: > diff --git a/drivers/staging/exfat/exfat_core.c > b/drivers/staging/exfat/exfat_core.c > index f71235c6a338..f4f82aecc05d 100644 > --- a/drivers/staging/exfat/exfat_core.c > +++ b/drivers/staging/exfat/exfat_core.c > @@ -713,8 +713,8

Re: [PATCH 6/6] staging: exfat: replace kmalloc with kmalloc_array

2019-10-31 Thread Roi Martin
> This patch failed to apply. Please fix it up and resend it as a new > version. I have rebased the patch against the branch "staging-testing" of the tree: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git And sent the new version. Thanks, Roi Martin

[PATCH v2 6/6] staging: exfat: replace kmalloc with kmalloc_array

2019-10-31 Thread Roi Martin
Replace expressions of the form: kmalloc(count * size, GFP_KERNEL); With: kmalloc_array(count, size, GFP_KERNEL); Signed-off-by: Roi Martin --- v2 changes: This patch has been rebased against the branch "staging-testing" of the tree:

[RFC PATCH] iio: adc: ad7091r5: ad7091r_remove() can be static

2019-10-31 Thread kbuild test robot
Fixes: 608229aeaa1f ("iio: adc: ad7091r5: Add scale and external VREF support") Signed-off-by: kbuild test robot --- ad7091r-base.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/iio/adc/ad7091r-base.c b/drivers/iio/adc/ad7091r-base.c index

Re: [PATCH v2 2/4] iio: adc: ad7091r5: Add scale and external VREF support

2019-10-31 Thread kbuild test robot
to specify the base tree in git format-patch, please see https://stackoverflow.com/a/37406982] url: https://github.com/0day-ci/linux/commits/Beniamin-Bia/iio-adc-Add-support-for-AD7091R5-ADC/20191031-100114 base: https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git togreg reproduce

Re: [Outreachy kernel] [PATCH v3 1/3] staging: rts5208: Eliminate the use of Camel Case in files ms.{h,c}

2019-10-31 Thread Julia Lawall
On Wed, 30 Oct 2019, Gabriela Bittencourt wrote: > Cleans up checks of "Avoid CamelCase" in files ms.{h,c} I think that these should be converted to all upper case rather than all lower case. julia > > Signed-off-by: Gabriela Bittencourt > --- > drivers/staging/rts5208/ms.c | 86

Re: [Outreachy kernel] [PATCH v3 2/3] staging: rts5208: Eliminate the use of Camel Case in files xd.{h,c}

2019-10-31 Thread Julia Lawall
On Wed, 30 Oct 2019, Gabriela Bittencourt wrote: > Cleans up checks of "Avoid CamelCase" in files xd.{h,c} > > Signed-off-by: Gabriela Bittencourt Acked-by: Julia Lawall > --- > drivers/staging/rts5208/xd.c | 8 > drivers/staging/rts5208/xd.h | 6 +++--- > 2 files changed, 7

Re: [Outreachy kernel] [PATCH v3 3/3] staging: rts5208: Eliminate the use of Camel Case in file sd.h

2019-10-31 Thread Julia Lawall
On Wed, 30 Oct 2019, Gabriela Bittencourt wrote: > Cleans up checks of "Avoid CamelCase" in file sd.h > > Signed-off-by: Gabriela Bittencourt > --- > drivers/staging/rts5208/sd.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/staging/rts5208/sd.h