[PATCH 1/4] staging: vt6656: Use sk_buff buffer for tx header

2020-05-16 Thread Malcolm Priestley
mac80211 can provide space for the driver to put a tx header on the skb buffer instead coping the entire frame on to a local buffer with the header. To use this extra_tx_headroom must be set in mac80211 with the largest possible header which is struct vnt_tx_buffer. The driver has 8 possible comb

[PATCH 2/4] staging: vt6656: vnt_beacon_xmit use extra_tx_headroom.

2020-05-16 Thread Malcolm Priestley
Create room for vnt_tx_short_buf_head in sk_buff and vnt_tx_usb_header. The struct ieee80211_mgmt is not longer in the header and is at the initial skb->data point. Signed-off-by: Malcolm Priestley --- drivers/staging/vt6656/rxtx.c | 22 +- drivers/staging/vt6656/rxtx.h | 5

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

2020-05-16 Thread Mauro Carvalho Chehab
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 sensors found on a Dell Latitude 7285. For now, it just detects the hardware and use request_module() to load a sensor driv

[PATCH 3/4] staging: vt6656: vnt_usb_send_context remove variable data.

2020-05-16 Thread Malcolm Priestley
A limit is also placed in vnt_tx_context of MAX_TOTAL_SIZE_WITH_ALL_HEADERS limiting size. Signed-off-by: Malcolm Priestley --- drivers/staging/vt6656/device.h | 1 - drivers/staging/vt6656/rxtx.c| 3 --- drivers/staging/vt6656/usbpipe.c | 5 + 3 files changed, 5 insertions(+), 4 deleti

[PATCH 4/4] staging: vt6656: use usb_anchor for tx queue.

2020-05-16 Thread Malcolm Priestley
Use usb_anchor to track tx submitted urbs and initialize the urb as needed in vnt_tx_context. Signed-off-by: Malcolm Priestley --- drivers/staging/vt6656/device.h | 2 +- drivers/staging/vt6656/main_usb.c | 18 -- drivers/staging/vt6656/usbpipe.c | 14 -- 3 files

[PATCH] staging: wfx: typo fix

2020-05-16 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 --- a/drivers/staging/wfx/tra

[PATCH] staging: rtl8192u: Using comparison to true is error prone

2020-05-16 Thread John Oldman
fix below issue reported by checkpatch: CHECK: Using comparison to true is error prone CHECK: Using comparison to false is error prone Signed-off-by: John Oldman --- drivers/staging/rtl8192u/ieee80211/ieee80211_tx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers

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

2020-05-16 Thread Martin Blumenstingl
Hi Tobias, On Thu, May 7, 2020 at 10:57 AM Tobias Baumann <017623705...@o2online.de> wrote: > > Hello Community > > I was referred to you by Martin. I have an older Android TV box that > runs for over 3 years with Armbian Linux (Debian Jessie Headless Kernel > 3.10.99). I'm looking forward to the

Re: [PATCH] staging: wfx: typo fix

2020-05-16 Thread Jérôme Pouiller
On Saturday 16 May 2020 14:43:59 CEST 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(-) > > diff --git a/drivers/staging/wfx/traces.h b/drivers/stagi

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

2020-05-16 Thread Xiangyang Zhang
DMA not unmapped when lock failed, this patch fixed it. Signed-off-by: Xiangyang Zhang --- drivers/staging/qlge/qlge_main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/qlge/qlge_main.c b/drivers/staging/qlge/qlge_main.c index a9163fb659d9..402edaeffe12 1