[driver-core:driver-core-next] BUILD SUCCESS 0e5596c54aa2fbfd22842096d3ebb6753b2a220a

2020-05-26 Thread kbuild test robot
allyesconfig powerpc rhel-kconfig powerpc allmodconfig powerpc allnoconfig i386 randconfig-a001-20200526 i386 randconfig-a004-20200526 i386 randconfig-a003-20200526 i386

Re: [PATCH v3] Staging: comedi: dt2814: remove unused assignments

2020-05-26 Thread Dan Carpenter
Oh, crap. I'm really sorry but these lines of code can't be deleted. Luc was suggesting that earlier and I saw what he said but I was sure they could be deleted. Now that I look at it more closely I see I was wrong. hi = inb(dev->iobase + DT2814_DATA); lo = inb(dev->iobase + DT28

[driver-core:swnode_unregister] BUILD SUCCESS 144ac3cd7f1ca04abfeb4527a7ae66c33b2ed12a

2020-05-26 Thread kbuild test robot
powerpc allnoconfig i386 randconfig-a001-20200526 i386 randconfig-a004-20200526 i386 randconfig-a003-20200526 i386 randconfig-a006-20200526 i386 randconfig-a002-20200526 i386

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

2020-05-26 Thread Martin Blumenstingl
Hi Tobias, On Thu, May 21, 2020 at 1:17 PM Tobias Baumann <017623705...@o2online.de> wrote: [...] >>> with my patch and oleg RC5 hotstart(shutdown now) do not work with my >>> box ( wlan goes back to sleep mode always) >> >> I'm not sure what you mean here. >> if you run "shutdown now" then the

[PATCH v3] Staging: comedi: dt2814: remove unused assignments

2020-05-26 Thread Gaurav Pathak
From: Gaurav Pathak Silence following compiler warning: drivers/staging/comedi/drivers/dt2814.c: In function ‘dt2814_interrupt’: drivers/staging/comedi/drivers/dt2814.c:193:6: warning: variable ‘data’ set but not used [-Wunused-but-set-variable] int data; ^~~~ drivers/staging/comedi/driv

Re: [PATCH v2] Staging: comedi: dt2814: remove unused assignments

2020-05-26 Thread Dan Carpenter
On Tue, May 26, 2020 at 09:20:16PM +0530, gaurav wrote: ^^ So very close except your from header isn't right. Just fix that and send a v3. regards, dan carpenter ___ devel mailing list de...@linuxdriverproj

Re: [PATCH v11 1/2] dt-bindings: drm/bridge: anx7625: MIPI to DP transmitter DT schema

2020-05-26 Thread Rob Herring
On Fri, 15 May 2020 13:49:20 +0800, Xin Ji wrote: > anx7625: MIPI to DP transmitter DT schema > > Signed-off-by: Xin Ji > --- > .../bindings/display/bridge/analogix,anx7625.yaml | 95 > ++ > 1 file changed, 95 insertions(+) > create mode 100644 > Documentation/devicetree/

[PATCH 07/10] staging: wfx: add support for set/get ps_timeout

2020-05-26 Thread Jerome Pouiller
From: Jérôme Pouiller In some advanced usage or debug scenarios, it could interesting to change the value of ps_timeout or eventually to force use of PS-Poll frames. The wext API (used by iwconfig) provide a way to change ps_timeout. However, this API is obsolete and it seems a little weird to u

[PATCH 01/10] staging: wfx: drop unused variable

2020-05-26 Thread Jerome Pouiller
From: Jérôme Pouiller Since the commit 3f84adfe1d7ae ("staging: wfx: remove hack about tx_rate policies"), the variable "count" is no more used in wfx_tx_policy_build(). Notice that there were two instances of the variable "count" in wfx_tx_policy_build(). This patch also solves this cosmetic is

[PATCH 10/10] staging: wfx: allow to run nl80211 vendor commands with 'iw'

2020-05-26 Thread Jerome Pouiller
From: Jérôme Pouiller In current code, the nl80211 vendor extensions provided by the driver use the new API[1]. It requires to pack the netlink attributes into a NLA_NESTED. Unfortunately, it is not the way the command 'iw vendor' works. This patch, add extra vendor commands that can be called

[PATCH 09/10] staging: wfx: allow to set PTA settings

2020-05-26 Thread Jerome Pouiller
From: Jérôme Pouiller The device allows to do Packet Traffic Arbitration (PTA or also Coex) with other RF chips. Currently, there is no API to manage the PTA parameters. This patch provides a vendor extension to nl80211 to change the PTA parameters. Signed-off-by: Jérôme Pouiller --- drivers/

[PATCH 06/10] staging: wfx: split wfx_get_ps_timeout() from wfx_update_pm()

2020-05-26 Thread Jerome Pouiller
From: Jérôme Pouiller In the next commit, we will have to compute the PS timeout without changing the power save status of the device. This patch introduces wfx_get_ps_timeout() for that job and make wfx_update_pm() relies on it. Signed-off-by: Jérôme Pouiller --- drivers/staging/wfx/sta.c | 4

[PATCH 05/10] staging: wfx: retrieve the PS status from the vif

2020-05-26 Thread Jerome Pouiller
From: Jérôme Pouiller The Power Save status is stored for each virtual interface and for the whole device. The WF200 is able to handle power saving per interface, so use the value stored in vif. Signed-off-by: Jérôme Pouiller --- drivers/staging/wfx/sta.c | 2 +- 1 file changed, 1 insertion(+)

[PATCH 03/10] staging: wfx: drop unused function wfx_pending_requeue()

2020-05-26 Thread Jerome Pouiller
From: Jérôme Pouiller The function wfx_pending_requeue() is not used anymore since the commit 7a44644c9379e ("staging: wfx: introduce wfx_set_default_unicast_key()") Fixes: 7a44644c9379e ("staging: wfx: introduce wfx_set_default_unicast_key()") Signed-off-by: Jérôme Pouiller --- drivers/stagin

[PATCH 00/10] staging: wfx: introduce nl80211 vendor extensions

2020-05-26 Thread Jerome Pouiller
From: Jérôme Pouiller Hello, This series introduces some nl80211 vendor extensions to the wfx driver. This series may lead to some discussions: 1. Patch 7 allows to change the dynamic PS timeout. I have found an API in wext (cfg80211_wext_siwpower()) that do more or less the same t

[PATCH 02/10] staging: wfx: do not declare variables inside loops

2020-05-26 Thread Jerome Pouiller
From: Jérôme Pouiller The local variables should be declared at beginning of the functions. Signed-off-by: Jérôme Pouiller --- drivers/staging/wfx/data_tx.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/drivers/staging/wfx/data_tx.c b/drivers/staging/wfx/data_tx.c i

[PATCH 04/10] staging: wfx: add support for tx_power_loop

2020-05-26 Thread Jerome Pouiller
From: Jérôme Pouiller During the calibration of the RF amplifier, the device is able to provide some data about the status of the amplifier. Record these data and expose them in debugfs. Signed-off-by: Jérôme Pouiller --- drivers/staging/wfx/debug.c | 26 ++

[PATCH 08/10] staging: wfx: allow to burn prevent rollback bit

2020-05-26 Thread Jerome Pouiller
From: Jérôme Pouiller In case a security flaw is found in a version of firmware, the device offers a way to disallow the loading an older firmware. This patch provides a vendor extension to nl80211 to enable this feature. Signed-off-by: Jérôme Pouiller --- drivers/staging/wfx/hif_api_general.

[PATCH v2] Staging: comedi: dt2814: remove unused assignments

2020-05-26 Thread gaurav
Silence following compiler warning: drivers/staging/comedi/drivers/dt2814.c: In function ‘dt2814_interrupt’: drivers/staging/comedi/drivers/dt2814.c:193:6: warning: variable ‘data’ set but not used [-Wunused-but-set-variable] int data; ^~~~ drivers/staging/comedi/drivers/dt2814.c: In funct

Re: [PATCH] staging: wlan-ng: Fix number of characters warning style.

2020-05-26 Thread Igor Ribeiro Barbosa Duarte
On Tue, May 26, 2020 at 07:59:32AM +0200, Greg KH wrote: > On Mon, May 25, 2020 at 07:10:25PM -0300, Igor Ribeiro Barbosa Duarte wrote: > > Fix checkpatch error "WARNING: line over 80 characters" at cfg80211.c:451 > > > > Signed-off-by: Igor Ribeiro Barbosa Duarte > > --- > > drivers/staging/wla

Re: [PATCH] Removing ununsed variable int lo, hi, int data and int i from comedi/drivers/dt2814.c.

2020-05-26 Thread Dan Carpenter
On Tue, May 26, 2020 at 08:24:50PM +0530, GAURAV PATHAK wrote: > On Tue, May 26, 2020 at 05:13:46PM +0300, Dan Carpenter wrote: > > Your subject doesn't use the correct patch prefix please use. > > > > [PATCH] Staging: comedi: dt2814: remove unused assignments > > > > Please resend a v2. > > > >

Re: [PATCH] Removing ununsed variable int lo, hi, int data and int i from comedi/drivers/dt2814.c.

2020-05-26 Thread GAURAV PATHAK
On Tue, May 26, 2020 at 05:13:46PM +0300, Dan Carpenter wrote: > Your subject doesn't use the correct patch prefix please use. > > [PATCH] Staging: comedi: dt2814: remove unused assignments > > Please resend a v2. > > Correct the references to Sparse as well like Luc said. > > regards, > dan ca

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

2020-05-26 Thread Heikki Krogerus
On Fri, May 22, 2020 at 11:57:36AM +0200, Mauro Carvalho Chehab wrote: > Em Thu, 21 May 2020 11:00:19 +0300 > Andy Shevchenko escreveu: > > > +Cc: Heikki (swnode expert) > > > > On Wed, May 20, 2020 at 2:19 PM Mauro Carvalho Chehab > > wrote: > > > Em Wed, 20 May 2020 11:26:08 +0300 > > > Sakar

Re: [PATCH] Removing ununsed variable int lo, hi, int data and int i from comedi/drivers/dt2814.c.

2020-05-26 Thread Dan Carpenter
Your subject doesn't use the correct patch prefix please use. [PATCH] Staging: comedi: dt2814: remove unused assignments Please resend a v2. Correct the references to Sparse as well like Luc said. regards, dan carpenter ___ devel mailing list de...@l

[staging:staging-next] BUILD SUCCESS c2312ff575fcaed96889d5bb5392afcc604c9442

2020-05-26 Thread kbuild test robot
rhel-kconfig powerpc allmodconfig powerpc allnoconfig i386 randconfig-a001-20200526 i386 randconfig-a004-20200526 i386 randconfig-a003-20200526 i386 randconfig-a006-20200526 i386

Re: [PATCH] staging: vt6656: Fix vnt_tx_usb_header static checker warning

2020-05-26 Thread Dan Carpenter
On Sun, May 24, 2020 at 12:12:41AM +0100, Malcolm Priestley wrote: > drivers/staging/vt6656/rxtx.c:729 vnt_beacon_xmit() > warn: struct type mismatch 'vnt_beacon_buffer vs vnt_tx_usb_header' > > Since the only part of vnt_beacon_buffer is used remove and > replace it with vnt_tx_usb_header. > > F

Re: Am Still Waiting For Your Reply

2020-05-26 Thread Ms. Reem Al-Hashimi
My name is Reem E. Al-Hashimi, the Emirates Minister of State and Managing Director of United Arab Emirates (Dubai) World Expo 2020 Committee. I am writing you to stand as my partner to receive my share of gratification from foreign companies whom I helped during the bidding exercise towards the

Re: [greybus-dev] [PATCH] staging: greybus: loopback: fix a spelling error.

2020-05-26 Thread Alex Elder
On 5/25/20 1:10 AM, Till Varoquaux wrote: Successed -> succeeded. Signed-off-by: Till Varoquaux Looks good. Reviewed-by: Alex Elder --- drivers/staging/greybus/loopback.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/greybus/loopback.c b/drivers/s

Re: [PATCH] media: atomisp: get rid of a warning message

2020-05-26 Thread Mauro Carvalho Chehab
Em Tue, 26 May 2020 12:54:18 +0300 Sakari Ailus escreveu: > On Tue, May 26, 2020 at 10:53:57AM +0200, Mauro Carvalho Chehab wrote: > > There's a warning message about an unused code. The code that > > were using it were commented out, due to a problem causing the > > firmware load to fail on the

Re: [PATCH] media: atomisp: get rid of a warning message

2020-05-26 Thread Sakari Ailus
On Tue, May 26, 2020 at 10:53:57AM +0200, Mauro Carvalho Chehab wrote: > There's a warning message about an unused code. The code that > were using it were commented out, due to a problem causing the > firmware load to fail on the machines we're using for testing. > > Change the place where we're

[PATCH] media: atomisp: get rid of a warning message

2020-05-26 Thread Mauro Carvalho Chehab
There's a warning message about an unused code. The code that were using it were commented out, due to a problem causing the firmware load to fail on the machines we're using for testing. Change the place where we're commenting the code out, in order to avoid the warning. Fixes: 95d1f398c4dc ("me

Re: [PATCH 09/11] media: atomisp: partially get rid of one abstraction layer

2020-05-26 Thread Mauro Carvalho Chehab
Em Tue, 26 May 2020 10:26:05 +0300 Sakari Ailus escreveu: > Hi Mauro, > > On Mon, May 25, 2020 at 08:56:08AM +0200, Mauro Carvalho Chehab wrote: > > The very same macros are defined as CSS_foo and IA_CSS_foo. > > > > Remove this abstraction, as it just make things confusing, > > for no good rea

Re: [PATCH][next] media: atomisp: fix a handful of spelling mistakes

2020-05-26 Thread Sakari Ailus
On Thu, May 21, 2020 at 08:44:32PM +0100, Colin King wrote: > From: Colin Ian King > > There are several spelling mistakes in various messages and literal > strings. Fix these. > > Signed-off-by: Colin Ian King Acked-by: Sakari Ailus -- Sakari Ailus _

Re: [PATCH 00/11] Some fixes and cleanups for atomisp driver

2020-05-26 Thread Sakari Ailus
On Mon, May 25, 2020 at 08:55:59AM +0200, Mauro Carvalho Chehab wrote: > The atomisp driver has lots of issues. This series get rid of a few of > them and updates the TODO list to reflect the current status and > provide more details aboug some items. Acked-by: Sakari Ailus -- Sakari Ailus

Re: [PATCH 09/11] media: atomisp: partially get rid of one abstraction layer

2020-05-26 Thread Sakari Ailus
Hi Mauro, On Mon, May 25, 2020 at 08:56:08AM +0200, Mauro Carvalho Chehab wrote: > The very same macros are defined as CSS_foo and IA_CSS_foo. > > Remove this abstraction, as it just make things confusing, > for no good reason. I think this boils down to which prefix should the uAPI structs of t

Ahmed Al Qassim

2020-05-26 Thread Ahmed Al Qassim
Hello, Greetings to you my dear good friend, please my name is .Ahmed Al Qassim,a Bank Officer in one of the leading bank here in U.A.E. Please I have something very important and confidential [a business proposal] to discuss with you. Please kindly get back to me through my private contact E-mail

Re: [PATCH 06/11] media: atomisp: update TODO list

2020-05-26 Thread Sakari Ailus
Hi Mauro, Thanks for the patchset. On Mon, May 25, 2020 at 08:56:05AM +0200, Mauro Carvalho Chehab wrote: > Let's reflect the current status at the TODO list, as other > developers can help addressing issues over there. > > Signed-off-by: Mauro Carvalho Chehab > --- > drivers/staging/media/ato