mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
793f8ab62c
Add kernel patches for version 6.1. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
26 lines
723 B
Diff
26 lines
723 B
Diff
From 6674a753e11c7c623926a8fed128a9ed86530e5c Mon Sep 17 00:00:00 2001
|
|
From: Maxime Ripard <maxime@cerno.tech>
|
|
Date: Mon, 11 Jul 2022 10:38:25 +0200
|
|
Subject: [PATCH] drm/vc4: hvs: Skip DebugFS Registration for FKMS
|
|
|
|
FKMS doesn't have an HVS and it's expected. Return from the debugfs init
|
|
function immediately if we're running with fkms.
|
|
|
|
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
|
|
---
|
|
drivers/gpu/drm/vc4/vc4_hvs.c | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
--- a/drivers/gpu/drm/vc4/vc4_hvs.c
|
|
+++ b/drivers/gpu/drm/vc4/vc4_hvs.c
|
|
@@ -975,6 +975,9 @@ int vc4_hvs_debugfs_init(struct drm_mino
|
|
struct vc4_hvs *hvs = vc4->hvs;
|
|
int ret;
|
|
|
|
+ if (vc4->firmware_kms)
|
|
+ return 0;
|
|
+
|
|
if (!vc4->hvs)
|
|
return -ENODEV;
|
|
|