[PATCH] staging: android: Delete the 'vsoc' driver

2020-02-02 Thread Alistair Delva
The 'vsoc' driver was required for an early iteration of the Android 'cuttlefish' virtual platform, but this platform has been wholly converted to use virtio drivers instead. Delete this old driver. Cc: Greg Kroah-Hartman Cc: Joel Fernandes Cc: Greg Hartman Cc: kernel-t...@android.com Cc:

[PATCH 2/2] staging: vt6656: Remove fall back functions and headers.

2020-02-02 Thread Malcolm Priestley
Fall back is no longer used in driver so remove all functions and headers. Signed-off-by: Malcolm Priestley --- drivers/staging/vt6656/device.h | 1 - drivers/staging/vt6656/rxtx.c | 206 drivers/staging/vt6656/rxtx.h | 60 -- 3 files changed, 267

[PATCH 1/2] staging: vt6656: Disable and remove fall back rates from driver.

2020-02-02 Thread Malcolm Priestley
The fall back rates are not properly implemented in driver and form part of the legacy driver. mac80211 has no indication that this is happening and it does appear the driver does function considerably better without them so remove them. Signed-off-by: Malcolm Priestley ---

Re: fbtft: 5 years in staging

2020-02-02 Thread Sam Ravnborg
Hi Noralf On Sun, Feb 02, 2020 at 04:41:54PM +0100, Noralf Trønnes wrote: > Hi, > > Since I'm the original author of fbtft I thought I'd highlight a couple > of issues that's probably not well known. > > Right after fbtft was added, fbdev was closed for new drivers[1] and > the fbdev maintainer

fbtft: 5 years in staging

2020-02-02 Thread Noralf Trønnes
Hi, Since I'm the original author of fbtft I thought I'd highlight a couple of issues that's probably not well known. Right after fbtft was added, fbdev was closed for new drivers[1] and the fbdev maintainer wanted to remove fbtft as a consequence of that decision, but Greg KH said he'd keep

Re: fbtft: 5 years in staging

2020-02-02 Thread Noralf Trønnes
Den 02.02.2020 16.41, skrev Noralf Trønnes: > Hi, > > Since I'm the original author of fbtft I thought I'd highlight a couple > of issues that's probably not well known. > > Right after fbtft was added, fbdev was closed for new drivers[1] and > the fbdev maintainer wanted to remove fbtft as a

[PATCH 2/2] staging: vt6656: Fix return for unsupported cipher modes.

2020-02-02 Thread Malcolm Priestley
mac80211 expect to see -EOPNOTSUPP on unsupported ciphers so these can be done on stack. correct all the returns to do this. Signed-off-by: Malcolm Priestley --- drivers/staging/vt6656/key.c | 5 - drivers/staging/vt6656/main_usb.c | 4 +--- 2 files changed, 5 insertions(+), 4

[PATCH 1/2] staging: vt6656: fix sign of rx_dbm to bb_pre_ed_rssi.

2020-02-02 Thread Malcolm Priestley
bb_pre_ed_rssi is an u8 rx_dm always returns negative signed values add minus operator to always yield positive. fixes issue where rx sensitivity is always set to maximum because the unsigned numbers were always greater then 100. Cc: stable Signed-off-by: Malcolm Priestley ---