mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
2e715fb4fc
Add support for BCM2712 (Raspberry Pi 5).
3bb5880ab3
Patches were generated from the diff between linux kernel branch linux-6.1.y
and rpi-6.1.y from raspberry pi kernel source:
- git format-patch linux-6.1.y...rpi-6.1.y
Build system: x86_64
Build-tested: bcm2708, bcm2709, bcm2710, bcm2711
Run-tested: bcm2710/RPi3B, bcm2711/RPi4B
Signed-off-by: Marty Jones <mj8263788@gmail.com>
[Remove applied and reverted patches, squash patches and config commits]
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
From 91ad217f93232fb3a0b52487fec67860fb29e93a Mon Sep 17 00:00:00 2001
|
|
From: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
Date: Fri, 17 Nov 2023 14:50:11 +0000
|
|
Subject: [PATCH] drm/bridge: display-connector: Select DRM_KMS_HELPER
|
|
|
|
Commit 7cd70656d128 ("drm/bridge: display-connector: implement
|
|
bus fmts callbacks") added use of drm_atomic_helper_bridge_*
|
|
functions, but didn't select the dependency of DRM_KMS_HELPER.
|
|
If nothing else selected that dependency it resulted in a
|
|
build failure.
|
|
|
|
Select the missing dependency.
|
|
|
|
Fixes: 7cd70656d128 ("drm/bridge: display-connector: implement bus fmts callbacks")
|
|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
---
|
|
drivers/gpu/drm/bridge/Kconfig | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/drivers/gpu/drm/bridge/Kconfig
|
|
+++ b/drivers/gpu/drm/bridge/Kconfig
|
|
@@ -67,6 +67,7 @@ config DRM_CROS_EC_ANX7688
|
|
config DRM_DISPLAY_CONNECTOR
|
|
tristate "Display connector support"
|
|
depends on OF
|
|
+ select DRM_KMS_HELPER
|
|
help
|
|
Driver for display connectors with support for DDC and hot-plug
|
|
detection. Most display controllers handle display connectors
|