mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-23 17:47:28 +08:00

These patches were generated from: https://github.com/raspberrypi/linux/commits/rpi-6.12.y With the following command: git format-patch -N v6.12.27..HEAD (HEAD -> 8d3206ee456a5ecdf9ddbfd8e5e231e4f0cd716e) Exceptions: - (def)configs patches - github workflows patches - applied & reverted patches - readme patches - wireless patches Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
From c6b51207662ee96d3f6ff39e38d8c7bb4a1aa15c 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
|
|
@@ -73,6 +73,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
|