Re: [PATCH v2] staging: wfx: Typo fix

2020-05-17 Thread Greg Kroah-Hartman
On Mon, May 18, 2020 at 07:47:29AM +0200, Mohamed Dawod wrote: > Fixing some typo errors in traces.h file > > Signed-off-by: Mohamed Dawod > --- > drivers/staging/wfx/traces.h | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) What changed from v1? Always put that below the ---

[PATCH v2] staging: wfx: Typo fix

2020-05-17 Thread Mohamed Dawod
Fixing some typo errors in traces.h file Signed-off-by: Mohamed Dawod --- drivers/staging/wfx/traces.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/wfx/traces.h b/drivers/staging/wfx/traces.h index bb9f7e9..80e131c 100644 ---

Re: [PATCH] staging: qlge: unmap dma when lock failed

2020-05-17 Thread Benjamin Poirier
On 2020-05-17 13:46 +0800, Xiangyang Zhang wrote: > DMA not unmapped when lock failed, this patch fixed it. > Fixes: 4322c5bee85e ("qlge: Expand coverage of hw lock for config register.") > Signed-off-by: Xiangyang Zhang > --- > drivers/staging/qlge/qlge_main.c | 3 ++- > 1 file changed, 2

Re: RTL8723BS driver doesn't work for,me but I can help testing

2020-05-17 Thread Martin Blumenstingl
ch you can get all my patches from here: [0] as always: some of them are not even in linux-next yet and there's a reason for that ;-) I have changed the GPIO_ACTIVE_* polarity for the two GPIOs in the sdio_pwrseq node if you want to do that by yourself. Best regards, Martin [0] https://github

Re: RTL8723BS driver doesn't work for,me but I can help testing

2020-05-17 Thread Tobias Baumann
hi martin sorry for cc -problem it was my fault in thunderbird thanks for dtb file but this file has problem kernel stop with [    6.122092] mmc0: new high speed SDIO card at address 0001 [   35.804258] VCCK: disabling [   35.808781] platform pwmleds: deferred probe pending [   35.812625]

Re: [RFC PATCH] staging: rtl8192u: indicate_packets() can be static

2020-05-17 Thread Joe Perches
On Mon, 2020-05-18 at 04:22 +0800, kbuild test robot wrote: > Signed-off-by: kbuild test robot > --- This doesn't apply on Linus' tree or -next so perhaps the robot should put what tree and branch patches like these are meant to be applied on after the --- line > ieee80211_rx.c |2 +- > 1

Re: [PATCH V1 6/6] staging: greybus: audio: Enable GB codec, audio module compilation.

2020-05-17 Thread kbuild test robot
Hi Vaibhav, I love your patch! Perhaps something to improve: [auto build test WARNING on staging/staging-testing] [also build test WARNING on v5.7-rc5 next-20200515] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system. BTW, we also suggest to use

Re: RTL8723BS driver doesn't work for,me but I can help testing

2020-05-17 Thread Martin Blumenstingl
Hi Tobias, (adding back the original Cc list since that got lost at some point. please keep them included) On Sun, May 17, 2020 at 9:57 PM Tobias Baumann <017623705...@o2online.de> wrote: > > hi Martin > > > i know what you mean with many modules from Arduino sensor modules not > all datasheet

Re: [PATCH] staging: rtl8192u: Merge almost duplicate code

2020-05-17 Thread kbuild test robot
Hi Pascal, Thank you for the patch! Perhaps something to improve: [auto build test WARNING on staging/staging-testing] [also build test WARNING on v5.7-rc5 next-20200515] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system. BTW, we also suggest to

[RFC PATCH] staging: rtl8192u: indicate_packets() can be static

2020-05-17 Thread kbuild test robot
Signed-off-by: kbuild test robot --- ieee80211_rx.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c b/drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c index 3309f64be4c94..bceff1ba3d7d4 100644 ---

Re: [PATCH V1 5/6] staging: greybus: audio: Add helper APIs for dynamic audio modules

2020-05-17 Thread Alexandre Belloni
Hi, On 17/05/2020 22:47:20+0530, Vaibhav Agarwal wrote: > Greybus Codec driver allows modules to be dynamically added and removed, > which further requires updating the DAPM configurations as well. > > With current snd_soc architecture, dynamic audio modules is not yet > supported. This patch

[PATCH V1 6/6] staging: greybus: audio: Enable GB codec, audio module compilation.

2020-05-17 Thread Vaibhav Agarwal
Currently, GB codec and audio module is conditionally compiled based on GREYBUS_AUDIO_MSM8994. However, audio module is not dependent on MSM8994 platform and can be used generically with any platform that follows GB Audio class specification. Also, GB codec driver corresponds to dummy codec

[PATCH V1 5/6] staging: greybus: audio: Add helper APIs for dynamic audio modules

2020-05-17 Thread Vaibhav Agarwal
Greybus Codec driver allows modules to be dynamically added and removed, which further requires updating the DAPM configurations as well. With current snd_soc architecture, dynamic audio modules is not yet supported. This patch provides helper APIs to update DAPM configurations in response to

[PATCH V1 1/6] staging: greybus: audio: Update snd_jack FW usage as per new APIs

2020-05-17 Thread Vaibhav Agarwal
snd_soc_jack APIs are modified in recent kernel versions. This patch updates the codec driver to resolve the compilation errors related to jack framework. Signed-off-by: Vaibhav Agarwal --- drivers/staging/greybus/audio_codec.c | 59 --- 1 file changed, 47

[PATCH V1 4/6] staging: greybus: audio: Resolve compilation error in topology parser

2020-05-17 Thread Vaibhav Agarwal
Fix compilation errors for GB Audio topology parser code with recent kernel versions. Signed-off-by: Vaibhav Agarwal --- drivers/staging/greybus/audio_topology.c | 130 +++ 1 file changed, 61 insertions(+), 69 deletions(-) diff --git

[PATCH V1 2/6] staging: greybus: audio: Maintain jack list within GB Audio module

2020-05-17 Thread Vaibhav Agarwal
As per the current implementation for GB codec driver, a jack list is maintained for each module. And it expects the list to be populated by the snd_soc_jack structure which would require modifications in mainstream code. However, this is not a necessary requirement and the list can be easily

[PATCH V1 0/6] Enable Greybus Audio codec driver

2020-05-17 Thread Vaibhav Agarwal
The existing GB Audio codec driver is dependent on MSM8994 Audio driver. During the development stage, this depdency was configured due to various changes involved in MSM Audio driver to enable addtional codec card and some of the changes proposed in mainline ASoC framework. However, these are not

[PATCH V1 3/6] staging: greybus: audio: Resolve compilation errors for GB codec module

2020-05-17 Thread Vaibhav Agarwal
Due to dependencies on ASoC framework changes, GB dummy codec module compilation is currently disabled. This patch updates codec driver as per the latest ASoC APIs. Signed-off-by: Vaibhav Agarwal --- drivers/staging/greybus/audio_codec.c | 87 +--

Re: [PATCH] media: ipu3: add a module to probe sensors via ACPI

2020-05-17 Thread Sakari Ailus
Hi Mauro, Thanks for the patch. On Sat, May 16, 2020 at 12:43:39PM +0200, Mauro Carvalho Chehab wrote: > On devices without ACPI, or which ACPI is not prepared to > export sensor data via DT, we need a different probing > method. > > This little driver adds initial support to probe the >

Hello Friend 16/05/2020

2020-05-17 Thread Hello
Good day, My name is Reem E. Hashimy, the Emirates Minister of State and Managing Director of the United Arab Emirates (Dubai) World Expo 2020 Committee. I am writing you to manage my funds I received as financial gratification from various foreign companies I assisted to receive

Hello Friend 16/05/2020

2020-05-17 Thread Hello
Good day, My name is Reem E. Hashimy, the Emirates Minister of State and Managing Director of the United Arab Emirates (Dubai) World Expo 2020 Committee. I am writing you to manage my funds I received as financial gratification from various foreign companies I assisted to receive