[GIT PULL] Staging driver fixes for 5.5-rc3

2019-12-19 Thread Greg KH
The following changes since commit d1eef1c619749b2a57e514a3fa67d9a516ffa919: Linux 5.5-rc2 (2019-12-15 15:16:08 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git tags/staging-5.5-rc3 for you to fetch changes up to c05c403b1d1230

Re: [PATCH 4/4] Staging: vc04_services: Fix checkpatch.pl error

2019-12-19 Thread Greg KH
On Fri, Dec 20, 2019 at 10:44:14AM +0530, Simran Sandhu wrote: > CHECKPATH ERROR: Alignment should match open parenthesis was fixed by > entroducing tabs and spaces on the location > drivers/staging/vc04_services/bcm2835-audio/bcm2835-pcm.c:349 That is a list of a checkpatch error, but does not s

[PATCH 4/4] Staging: vc04_services: Fix checkpatch.pl error

2019-12-19 Thread Simran Sandhu
CHECKPATH ERROR: Alignment should match open parenthesis was fixed by entroducing tabs and spaces on the location drivers/staging/vc04_services/bcm2835-audio/bcm2835-pcm.c:349 Signed-off-by: Simran Sandhu --- drivers/staging/vc04_services/bcm2835-audio/bcm2835-pcm.c | 2 +- 1 file changed, 1 in

Did You Get My Message This Time?

2019-12-19 Thread Friedrich And Annand Mayrhofer
This is the second time i am sending you this mail.I, Friedrich Mayrhofer Donate $ 1,000,000.00 to You, Email Me personally for more details. Regards. Friedrich Mayrhofer ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdrive

hello

2019-12-19 Thread Mr Lili
Hello, My name is Mr.Song Lile (I work with a Bank as an account officer in the Treasury/Credit Control Unit) I want to solicit your attention to receive the money on my behalf. The purpose of my contacting you is because you live in outside Hong Kong. When you reply this message, I will send y

Re: [PATCH 1/1] staging: nvec: check return value

2019-12-19 Thread Marc Dietrich
Hello Xidong, On Wed, 18 Dec 2019, Xidong Wang wrote: In nvec_kbd_probe(), the return value of devm_input_allocate_device() should be checked before it is used. Signed-off-by: Xidong Wang looks good to me. Thanks! Acked-by: Marc Dietrich --- drivers/staging/nvec/nvec_kbd.c | 2 ++ 1 file

[PATCH v3] staging: kpc2000: remove unnecessary assertions in kpc_dma_transfer

2019-12-19 Thread Aditya Pakki
In kpc_dma_transfer(), the assertion that priv is NULL and priv->ldev is NULL, are never satisfied. The two callers of the function, dereference the fields before the function is called. This patch removes the two BUG_ON calls. Signed-off-by: Aditya Pakki --- v2: Also remove BUG_ON call for ldev,

Re: [PATCH v3] drivers/staging/exfat/exfat_super.c: Clean up ffsCamelCase function names

2019-12-19 Thread Greg KH
On Wed, Dec 18, 2019 at 08:47:22AM +0100, Julian Preis wrote: > Rename every instance of to > in file exfat_super.c. Fix alignment. > > Co-developed-by: Johannes Weidner > Signed-off-by: Johannes Weidner > Signed-off-by: Julian Preis > > --- > Changes in v3: > - Change renaming from to >

Re: [PATCH v2] staging: kpc2000: remove unnecessary assertion on priv

2019-12-19 Thread Greg Kroah-Hartman
On Tue, Dec 17, 2019 at 04:58:24PM -0600, Aditya Pakki wrote: > In kpc_dma_transfer(), the assertion that priv is NULL is never > satisfied. The two callers of the function, dereference the priv > pointer before the call is executed. This patch removes the > unnecessary BUG_ON call. > > Signed-off

Re: [PATCH v1 1/3] gpio: tegra: Use generic readl_relaxed/writel_relaxed accessors

2019-12-19 Thread Dmitry Osipenko
19.12.2019 18:57, Ben Dooks пишет: > On 19/12/2019 11:01, Bartosz Golaszewski wrote: >> niedz., 15 gru 2019 o 19:31 Dmitry Osipenko >> napisał(a): >>> >>> There is no point in using old-style raw accessors, the generic >>> accessors >>> do the same thing and also take into account CPU endianness.

Re: [PATCH v1 1/3] gpio: tegra: Use generic readl_relaxed/writel_relaxed accessors

2019-12-19 Thread Ben Dooks
On 19/12/2019 11:01, Bartosz Golaszewski wrote: niedz., 15 gru 2019 o 19:31 Dmitry Osipenko napisał(a): There is no point in using old-style raw accessors, the generic accessors do the same thing and also take into account CPU endianness. Tegra SoCs do not support big-endian mode in the upstre

Re: [PATCH v1 0/3] Tegra GPIO: Minor code clean up

2019-12-19 Thread Dmitry Osipenko
19.12.2019 17:53, Thierry Reding пишет: > On Sun, Dec 15, 2019 at 09:30:44PM +0300, Dmitry Osipenko wrote: >> Hello, >> >> I was investigating why CPU hangs during of GPIO driver suspend and in >> the end it turned out that it is a Broadcom WiFi driver problem because >> it keeps OOB wake-interrupt

Re: [PATCH v1 1/3] gpio: tegra: Use generic readl_relaxed/writel_relaxed accessors

2019-12-19 Thread Dmitry Osipenko
19.12.2019 14:01, Bartosz Golaszewski пишет: > niedz., 15 gru 2019 o 19:31 Dmitry Osipenko napisał(a): >> >> There is no point in using old-style raw accessors, the generic accessors >> do the same thing and also take into account CPU endianness. Tegra SoCs do >> not support big-endian mode in the

Re: [PATCH v1 0/3] Tegra GPIO: Minor code clean up

2019-12-19 Thread Thierry Reding
On Sun, Dec 15, 2019 at 09:30:44PM +0300, Dmitry Osipenko wrote: > Hello, > > I was investigating why CPU hangs during of GPIO driver suspend and in > the end it turned out that it is a Broadcom WiFi driver problem because > it keeps OOB wake-interrupt enabled while WLAN interface is DOWN and this

Re: [PATCH v1 1/3] gpio: tegra: Use generic readl_relaxed/writel_relaxed accessors

2019-12-19 Thread Bartosz Golaszewski
niedz., 15 gru 2019 o 19:31 Dmitry Osipenko napisał(a): > > There is no point in using old-style raw accessors, the generic accessors > do the same thing and also take into account CPU endianness. Tegra SoCs do > not support big-endian mode in the upstream kernel, but let's switch away > from the

Re: [PATCH 3/3] Staging: sm750fb: sm750.h:Fixed Coding Style Issue

2019-12-19 Thread Greg KH
On Thu, Dec 19, 2019 at 02:35:53PM +0530, Simran Sandhu wrote: > Fixed the checkpath error: function definition arguments > should also have identifier names > > Signed-of-by: Simran Sandhu > --- > drivers/staging/sm750fb/sm750.h | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > >

[PATCH 3/3] Staging: sm750fb: sm750.h:Fixed Coding Style Issue

2019-12-19 Thread Simran Sandhu
Fixed the checkpath error: function definition arguments should also have identifier names Signed-of-by: Simran Sandhu --- drivers/staging/sm750fb/sm750.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/sm750fb/sm750.h b/drivers/staging/sm750fb/sm750.h i