mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
20ea6adbf1
Build system: x86_64 Build-tested: bcm2708, bcm2709, bcm2710, bcm2711 Run-tested: bcm2708/RPiB+, bcm2709/RPi3B, bcm2710/RPi3B, bcm2711/RPi4B Signed-off-by: Marty Jones <mj8263788@gmail.com> Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
25 lines
770 B
Diff
25 lines
770 B
Diff
From 0ba0b0f41c143fe0f30ea248e55872e681870be2 Mon Sep 17 00:00:00 2001
|
|
From: Maxime Ripard <maxime@cerno.tech>
|
|
Date: Thu, 19 Aug 2021 15:53:03 +0200
|
|
Subject: [PATCH] drm/vc4: select PM
|
|
|
|
We already depend on runtime PM to get the power domains and clocks for
|
|
most of the devices supported by the vc4 driver, so let's just select it
|
|
to make sure it's there, and remove the ifdef.
|
|
|
|
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
|
|
---
|
|
drivers/gpu/drm/vc4/Kconfig | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/drivers/gpu/drm/vc4/Kconfig
|
|
+++ b/drivers/gpu/drm/vc4/Kconfig
|
|
@@ -9,6 +9,7 @@ config DRM_VC4
|
|
select DRM_KMS_CMA_HELPER
|
|
select DRM_GEM_CMA_HELPER
|
|
select DRM_PANEL_BRIDGE
|
|
+ select PM
|
|
select SND_PCM
|
|
select SND_PCM_ELD
|
|
select SND_SOC_GENERIC_DMAENGINE_PCM
|