Skip to content

Commit 22ef121

Browse files
committed
Merge tag 'staging-5.17-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging
Pull staging driver updates from Greg KH: "Here's the big set of staging driver updates for 5.17-rc1 Nothing major in here at all, just lots and lots of tiny cleanups. Overall more code was removed than added, which is always nice, but not a huge change. Majority of the work happened in the r8188eu driver, that had hundreds of cleanups happen on it, but almost all other staging drivers had cleanups as well. No new functionality was added, cleanups only. All of these have been in linux-next for a while with no reported problems" * tag 'staging-5.17-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging: (308 commits) staging: r8188eu: rename camelcase variable uintPeerChannel staging: r8188eu: make BW20_24G_Diff a 1-D array staging: r8188eu: make OFDM_24G_Diff a 1-D array staging: r8188eu: BW40_24G_Diff is set but not used staging: r8188eu: CCK_24G_Diff is set but not used staging: r8188eu: make Index24G_BW40_Base a 1-D array staging: r8188eu: make Index24G_CCK_Base a 1-D array staging: r8188eu: rfPath is always 0 staging: r8188eu: remove unneeded parameter from rtl8188e_SetHalODMVar staging: pi433: add comment to rx_lock mutex definition staging: pi433: fix frequency deviation check staging: vc04_services: rename BM2835 to BCM2835 in headers comments staging: vc04_services: rename string literal containing bm2835_* to bcm2835*_ staging: vc04_services: rename variables containing bm2835_* to bcm2835_* staging: vc04_services: rename functions containing bm2835_* to bcm2835_* staging: vc04_services: rename structures bm2835_mmal_dev and bm2835_mmal_v4l2_ctrl staging: greybus: audio: Check null pointer staging: r8188eu: add spaces around P2P_AP_P2P_CH_SWITCH_PROCESS_WK staging: r8188eu: turbo scan is always off for r8188eu staging: r8188eu: cmd_issued_cnt is set but not used ...
2 parents 6dc69d3 + fa78315 commit 22ef121

File tree

137 files changed

+1760
-7495
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+1760
-7495
lines changed

drivers/staging/Kconfig

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,6 @@ source "drivers/staging/vc04_services/Kconfig"
8484

8585
source "drivers/staging/pi433/Kconfig"
8686

87-
source "drivers/staging/mt7621-dma/Kconfig"
88-
89-
source "drivers/staging/ralink-gdma/Kconfig"
90-
9187
source "drivers/staging/mt7621-dts/Kconfig"
9288

9389
source "drivers/staging/axis-fifo/Kconfig"

drivers/staging/Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ obj-$(CONFIG_KS7010) += ks7010/
3232
obj-$(CONFIG_GREYBUS) += greybus/
3333
obj-$(CONFIG_BCM2835_VCHIQ) += vc04_services/
3434
obj-$(CONFIG_PI433) += pi433/
35-
obj-$(CONFIG_SOC_MT7621) += mt7621-dma/
36-
obj-$(CONFIG_DMA_RALINK) += ralink-gdma/
3735
obj-$(CONFIG_SOC_MT7621) += mt7621-dts/
3836
obj-$(CONFIG_XIL_AXIS_FIFO) += axis-fifo/
3937
obj-$(CONFIG_FIELDBUS_DEV) += fieldbus/

drivers/staging/axis-fifo/axis-fifo.c

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,6 @@ static int axis_fifo_parse_dt(struct axis_fifo *fifo)
809809

810810
static int axis_fifo_probe(struct platform_device *pdev)
811811
{
812-
struct resource *r_irq; /* interrupt resources */
813812
struct resource *r_mem; /* IO mem resources */
814813
struct device *dev = &pdev->dev; /* OS device (from device tree) */
815814
struct axis_fifo *fifo = NULL;
@@ -882,16 +881,12 @@ static int axis_fifo_probe(struct platform_device *pdev)
882881
*/
883882

884883
/* get IRQ resource */
885-
r_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
886-
if (!r_irq) {
887-
dev_err(fifo->dt_device, "no IRQ found for 0x%pa\n",
888-
&r_mem->start);
889-
rc = -EIO;
884+
rc = platform_get_irq(pdev, 0);
885+
if (rc < 0)
890886
goto err_initial;
891-
}
892887

893888
/* request IRQ */
894-
fifo->irq = r_irq->start;
889+
fifo->irq = rc;
895890
rc = devm_request_irq(fifo->dt_device, fifo->irq, &axis_fifo_irq, 0,
896891
DRIVER_NAME, fifo);
897892
if (rc) {

drivers/staging/fbtft/Kconfig

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,3 @@ config FB_TFT_UPD161704
200200
depends on FB_TFT
201201
help
202202
Generic Framebuffer support for uPD161704
203-
204-
config FB_TFT_WATTEROTT
205-
tristate "FB driver for the WATTEROTT LCD Controller"
206-
depends on FB_TFT
207-
help
208-
Generic Framebuffer support for WATTEROTT

drivers/staging/fbtft/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,3 @@ obj-$(CONFIG_FB_TFT_TLS8204) += fb_tls8204.o
3636
obj-$(CONFIG_FB_TFT_UC1611) += fb_uc1611.o
3737
obj-$(CONFIG_FB_TFT_UC1701) += fb_uc1701.o
3838
obj-$(CONFIG_FB_TFT_UPD161704) += fb_upd161704.o
39-
obj-$(CONFIG_FB_TFT_WATTEROTT) += fb_watterott.o

drivers/staging/fbtft/fb_sh1106.c

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,7 @@ static struct fbtft_display display = {
173173
},
174174
};
175175

176-
FBTFT_REGISTER_DRIVER(DRVNAME, "sinowealth,sh1106", &display);
177-
178-
MODULE_ALIAS("spi:" DRVNAME);
179-
MODULE_ALIAS("platform:" DRVNAME);
180-
MODULE_ALIAS("spi:sh1106");
181-
MODULE_ALIAS("platform:sh1106");
176+
FBTFT_REGISTER_SPI_DRIVER(DRVNAME, "sinowealth", "sh1106", &display);
182177

183178
MODULE_DESCRIPTION("SH1106 OLED Driver");
184179
MODULE_AUTHOR("Heiner Kallweit");

drivers/staging/fbtft/fb_watterott.c

Lines changed: 0 additions & 302 deletions
This file was deleted.

0 commit comments

Comments
 (0)