public inbox for dri-devel@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Remove redundant X86 dependency for the cgbc backlight driver
@ 2026-03-27 19:39 Thomas Richard
  2026-03-27 19:39 ` [PATCH 1/2] backlight: cgbc: Remove redundant X86 dependency Thomas Richard
  2026-03-27 19:39 ` [PATCH 2/2] MAINTAINERS: Add cgbc backlight driver Thomas Richard
  0 siblings, 2 replies; 5+ messages in thread
From: Thomas Richard @ 2026-03-27 19:39 UTC (permalink / raw)
  To: Lee Jones, Daniel Thompson, Jingoo Han, Helge Deller
  Cc: Thomas Petazzoni, dri-devel, linux-fbdev, linux-kernel,
	Thomas Richard

Remove redundant X86 dependency for the cgbc backlight driver. Additionally
the driver is added to MAINTAINERS file.

Signed-off-by: Thomas Richard <thomas.richard@bootlin.com>
---
Thomas Richard (2):
      backlight: cgbc: Remove redundant X86 dependency
      MAINTAINERS: Add cgbc backlight driver

 MAINTAINERS                     | 1 +
 drivers/video/backlight/Kconfig | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
---
base-commit: c369299895a591d96745d6492d4888259b004a9e
change-id: 20260309-backlight-cgbc-remove-x86-dependency-40a7c9516459

Best regards,
-- 
Thomas Richard <thomas.richard@bootlin.com>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 1/2] backlight: cgbc: Remove redundant X86 dependency
  2026-03-27 19:39 [PATCH 0/2] Remove redundant X86 dependency for the cgbc backlight driver Thomas Richard
@ 2026-03-27 19:39 ` Thomas Richard
  2026-04-14 16:21   ` Daniel Thompson
  2026-03-27 19:39 ` [PATCH 2/2] MAINTAINERS: Add cgbc backlight driver Thomas Richard
  1 sibling, 1 reply; 5+ messages in thread
From: Thomas Richard @ 2026-03-27 19:39 UTC (permalink / raw)
  To: Lee Jones, Daniel Thompson, Jingoo Han, Helge Deller
  Cc: Thomas Petazzoni, dri-devel, linux-fbdev, linux-kernel,
	Thomas Richard

The backlight driver depends on the MFD cgbc-core driver, which already
depends on X86. The explicit X86 dependency for the backlight driver is
redundant and can be safely removed.

Signed-off-by: Thomas Richard <thomas.richard@bootlin.com>
---
 drivers/video/backlight/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/video/backlight/Kconfig b/drivers/video/backlight/Kconfig
index a7a3fbaf7c29..07905d2ba01a 100644
--- a/drivers/video/backlight/Kconfig
+++ b/drivers/video/backlight/Kconfig
@@ -260,7 +260,7 @@ config BACKLIGHT_PWM
 
 config BACKLIGHT_CGBC
 	tristate "Congatec Board Controller (CGBC) backlight support"
-	depends on MFD_CGBC && X86
+	depends on MFD_CGBC
 	help
 	  Say Y here to enable support for LCD backlight control on Congatec
 	  x86-based boards via the CGBC (Congatec Board Controller).

-- 
2.53.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] MAINTAINERS: Add cgbc backlight driver
  2026-03-27 19:39 [PATCH 0/2] Remove redundant X86 dependency for the cgbc backlight driver Thomas Richard
  2026-03-27 19:39 ` [PATCH 1/2] backlight: cgbc: Remove redundant X86 dependency Thomas Richard
@ 2026-03-27 19:39 ` Thomas Richard
  2026-04-14 16:22   ` Daniel Thompson
  1 sibling, 1 reply; 5+ messages in thread
From: Thomas Richard @ 2026-03-27 19:39 UTC (permalink / raw)
  To: Lee Jones, Daniel Thompson, Jingoo Han, Helge Deller
  Cc: Thomas Petazzoni, dri-devel, linux-fbdev, linux-kernel,
	Thomas Richard

Add missing backlight driver in CONGATEC BOARD CONTROLLER entry.

Signed-off-by: Thomas Richard <thomas.richard@bootlin.com>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 7d10988cbc62..c210dbb94459 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -6476,6 +6476,7 @@ F:	drivers/gpio/gpio-cgbc.c
 F:	drivers/hwmon/cgbc-hwmon.c
 F:	drivers/i2c/busses/i2c-cgbc.c
 F:	drivers/mfd/cgbc-core.c
+F:	drivers/video/backlight/cgbc_bl.c
 F:	drivers/watchdog/cgbc_wdt.c
 F:	include/linux/mfd/cgbc.h
 

-- 
2.53.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] backlight: cgbc: Remove redundant X86 dependency
  2026-03-27 19:39 ` [PATCH 1/2] backlight: cgbc: Remove redundant X86 dependency Thomas Richard
@ 2026-04-14 16:21   ` Daniel Thompson
  0 siblings, 0 replies; 5+ messages in thread
From: Daniel Thompson @ 2026-04-14 16:21 UTC (permalink / raw)
  To: Thomas Richard
  Cc: Lee Jones, Jingoo Han, Helge Deller, Thomas Petazzoni, dri-devel,
	linux-fbdev, linux-kernel

On Fri, Mar 27, 2026 at 08:39:32PM +0100, Thomas Richard wrote:
> The backlight driver depends on the MFD cgbc-core driver, which already
> depends on X86. The explicit X86 dependency for the backlight driver is
> redundant and can be safely removed.
>
> Signed-off-by: Thomas Richard <thomas.richard@bootlin.com>

Reviewed-by: Daniel Thompson (RISCstar) <danielt@kernel.org>


Daniel.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 2/2] MAINTAINERS: Add cgbc backlight driver
  2026-03-27 19:39 ` [PATCH 2/2] MAINTAINERS: Add cgbc backlight driver Thomas Richard
@ 2026-04-14 16:22   ` Daniel Thompson
  0 siblings, 0 replies; 5+ messages in thread
From: Daniel Thompson @ 2026-04-14 16:22 UTC (permalink / raw)
  To: Thomas Richard
  Cc: Lee Jones, Jingoo Han, Helge Deller, Thomas Petazzoni, dri-devel,
	linux-fbdev, linux-kernel

On Fri, Mar 27, 2026 at 08:39:33PM +0100, Thomas Richard wrote:
> Add missing backlight driver in CONGATEC BOARD CONTROLLER entry.
>
> Signed-off-by: Thomas Richard <thomas.richard@bootlin.com>

Reviewed-by: Daniel Thompson (RISCstar) <danielt@kernel.org>


Daniel.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2026-04-14 16:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-27 19:39 [PATCH 0/2] Remove redundant X86 dependency for the cgbc backlight driver Thomas Richard
2026-03-27 19:39 ` [PATCH 1/2] backlight: cgbc: Remove redundant X86 dependency Thomas Richard
2026-04-14 16:21   ` Daniel Thompson
2026-03-27 19:39 ` [PATCH 2/2] MAINTAINERS: Add cgbc backlight driver Thomas Richard
2026-04-14 16:22   ` Daniel Thompson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox