[staging:staging-testing] BUILD SUCCESS c95e48b275c9a26dbf9bd351d2e2ebf5e3dfe40d

2020-10-01 Thread kernel test robot
randconfig-a016-20200930 x86_64 randconfig-a014-20200930 x86_64 randconfig-a011-20200930 x86_64 randconfig-a012-20201001 x86_64 randconfig-a015-20201001 x86_64 randconfig-a014-20201001 x86_64 randconfig-a013-20201001

Spende

2020-10-01 Thread Azim Hashim
Hallo Ich bin Azim Hashim Premji, ein indischer Wirtschaftsmagnat, Investor und Philanthrop. Ich bin der Vorsitzende von Wipro Limited. Ich habe 25 Prozent meines persönlichen Vermögens für wohltätige Zwecke verschenkt. Und ich habe auch zugesagt, den Rest von 25% in diesem Jahr 2020 zu

Spende

2020-10-01 Thread Azim Hashim
Hallo Ich bin Azim Hashim Premji, ein indischer Wirtschaftsmagnat, Investor und Philanthrop. Ich bin der Vorsitzende von Wipro Limited. Ich habe 25 Prozent meines persönlichen Vermögens für wohltätige Zwecke verschenkt. Und ich habe auch zugesagt, den Rest von 25% in diesem Jahr 2020 zu

Re: [PATCH v2] Staging: nvec: nvec: fix double next comment

2020-10-01 Thread Joe Perches
On Sun, 2020-09-27 at 09:35 -0700, Ryan Kosta wrote: > Changes since v1: > * Made commit message more clear > * Added description > Note: previous patch named > "[PATCH] fix double next comment in drivers/staging/nvec/nvec.c" > > 8--8< > Fixes

Re: [PATCH v3] media: atomisp: fixes build breakage for ISP2400 due to a cleanup

2020-10-01 Thread Mauro Carvalho Chehab
Hi Andy, Em Thu, 1 Oct 2020 18:50:12 +0300 Andy Shevchenko escreveu: > On Thu, Oct 1, 2020 at 2:17 PM Mauro Carvalho Chehab > wrote: > > > > A temporary var needed for building with ISP2400 was removed > > by accident on a cleanup patch. > > > > Fix the breakage. > > Is this in any of your

Re: [PATCH v3] media: atomisp: fixes build breakage for ISP2400 due to a cleanup

2020-10-01 Thread Andy Shevchenko
On Thu, Oct 1, 2020 at 2:17 PM Mauro Carvalho Chehab wrote: > > A temporary var needed for building with ISP2400 was removed > by accident on a cleanup patch. > > Fix the breakage. Is this in any of your branches? > > Fixes: 852a53a02cf0 ("media: atomisp: get rid of unused vars") >

[PATCH v3] media: atomisp: fixes build breakage for ISP2400 due to a cleanup

2020-10-01 Thread Mauro Carvalho Chehab
A temporary var needed for building with ISP2400 was removed by accident on a cleanup patch. Fix the breakage. Fixes: 852a53a02cf0 ("media: atomisp: get rid of unused vars") Signed-off-by: Mauro Carvalho Chehab --- drivers/staging/media/atomisp/pci/sh_css.c | 14 +++--- 1 file changed,

[PATCH 3/3] media: zoran: fix mixed case on vars

2020-10-01 Thread Mauro Carvalho Chehab
Use this small script to replace CamelCase and wrong case on vars: FILES=$(find "$1" -type f|grep -e '.c$' -e '.h$') CAMEL_VARS=$(cat tags|perl -ne 'print "$1\n" if (m/^(\w*[A-Z]\w*[a-z]\w*)\s/)') for i in $CAMEL_VARS; do new=$(perl -e ' my $s = $ARGV[0];

[PATCH 2/3] media: zoran: get rid of an unused var

2020-10-01 Thread Mauro Carvalho Chehab
The jpeg_error in lowercase is not used anywhere. Drop it. Signed-off-by: Mauro Carvalho Chehab --- drivers/staging/media/zoran/zoran.h | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/media/zoran/zoran.h b/drivers/staging/media/zoran/zoran.h index 7217a64fe59b..945502becd60

[PATCH 1/3] media: zoran: use upper case for card types

2020-10-01 Thread Mauro Carvalho Chehab
Don't mix case there: let's just use uppercase, as this is the common pattern for such define-like enums. Signed-off-by: Mauro Carvalho Chehab --- drivers/staging/media/zoran/zoran.h | 8 drivers/staging/media/zoran/zoran_card.c | 20 ++-- 2 files changed, 14

Re: [PATCH] staging: vchiq: Fix list_for_each exit tests

2020-10-01 Thread Greg Kroah-Hartman
On Mon, Sep 28, 2020 at 12:11:03PM +0300, Dan Carpenter wrote: > This code code here used to be list_for_each() and after the loop then > the "entry" pointer was non-NULL if we found the correct entry or NULL > if we couldn't find it. Then we changed the code to use list_for_each_entry() > and so

Re: [PATCH v2] Staging: nvec: Remove duplicate word in comment.

2020-10-01 Thread Greg KH
On Tue, Sep 29, 2020 at 11:39:53PM -0400, Matthew Hanzelik wrote: > Remove a duplicate word in a comment within nvec.c. > > Signed-off-by: Matthew Hanzelik > --- > Changes in v2: > - Fix spelling mistake in commit. > --- > drivers/staging/nvec/nvec.c | 2 +- > 1 file changed, 1 insertion(+), 1

Re: [PATCH RFT/RFC v2 28/47] staging: media: zoran: convert mdelay to udelay

2020-10-01 Thread Mauro Carvalho Chehab
Em Fri, 25 Sep 2020 18:30:38 + Corentin Labbe escreveu: > As asked by checkpath, let's use udelay. > > Signed-off-by: Corentin Labbe > --- > drivers/staging/media/zoran/zoran_device.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git