Commit 214c2754 authored by Philipp Hortmann's avatar Philipp Hortmann Committed by Greg Kroah-Hartman
Browse files

staging: olpc_dcon: Remove driver marked as broken since 2022

Andres Salomon contributed this driver in 2010.

The following reasons lead to the removal:
- This driver generates maintenance workload
- Kconfig still depends on BROKEN since 2022.

Link: https://lore.kernel.org/all/Yqw4DynMEtAcZVim@kroah.com/


Signed-off-by: default avatarPhilipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/20241013172759.7524-1-philipp.g.hortmann@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ea5e911e
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -21955,13 +21955,6 @@ L: linux-tegra@vger.kernel.org
S:	Maintained
F:	drivers/staging/nvec/
STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
M:	Jens Frederich <jfrederich@gmail.com>
M:	Jon Nettleton <jon.nettleton@gmail.com>
S:	Maintained
W:	http://wiki.laptop.org/go/DCON
F:	drivers/staging/olpc_dcon/
STAGING - REALTEK RTL8712U DRIVERS
M:	Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
S:	Odd Fixes
+0 −2
Original line number Diff line number Diff line
@@ -24,8 +24,6 @@ menuconfig STAGING

if STAGING

source "drivers/staging/olpc_dcon/Kconfig"

source "drivers/staging/rtl8723bs/Kconfig"

source "drivers/staging/rtl8712/Kconfig"
+0 −1
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
# Makefile for staging directory

obj-y				+= media/
obj-$(CONFIG_FB_OLPC_DCON)	+= olpc_dcon/
obj-$(CONFIG_RTL8723BS)		+= rtl8723bs/
obj-$(CONFIG_R8712U)		+= rtl8712/
obj-$(CONFIG_OCTEON_ETHERNET)	+= octeon/

drivers/staging/olpc_dcon/Kconfig

deleted100644 → 0
+0 −17
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
config FB_OLPC_DCON
	tristate "One Laptop Per Child Display CONtroller support"
	depends on OLPC && FB && BROKEN
	depends on I2C
	depends on GPIO_CS5535 && ACPI
	select BACKLIGHT_CLASS_DEVICE
	help
	  In order to support very low power operation, the XO laptop uses a
	  secondary Display CONtroller, or DCON.  This secondary controller
	  is present in the video pipeline between the primary display
	  controller (integrate into the processor or chipset) and the LCD
	  panel.  It allows the main processor/display controller to be
	  completely powered off while still retaining an image on the display.
	  This controller is only available on OLPC platforms.  Unless you have
	  one of these platforms, you will want to say 'N'.
+0 −5
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
olpc-dcon-objs += olpc_dcon.o olpc_dcon_xo_1.o olpc_dcon_xo_1_5.o
obj-$(CONFIG_FB_OLPC_DCON)	+= olpc-dcon.o

Loading