1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter.git synced 2025-03-09 15:40:20 +00:00

Add a directory by kernel instead of a common root, add qnap-301w and rpi4 kernel 6.1 suppport

This commit is contained in:
Ycarus (Yannick Chabanois) 2023-04-22 08:07:24 +02:00
parent e910436a7a
commit 46837ec4c0
9459 changed files with 362648 additions and 116345 deletions

View file

@ -0,0 +1,29 @@
From 1de949e6248271ebab7cb1c77ab2ae249bbe8c7e Mon Sep 17 00:00:00 2001
From: Dom Cobley <popcornmix@gmail.com>
Date: Mon, 15 Aug 2022 19:42:38 +0100
Subject: [PATCH 441/726] drm/panel-simple: hack ignore orientation
downstream removal of orientation plus upstream adding of new function
---
drivers/gpu/drm/panel/panel-simple.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index 1705b34ef76b..2e21f5075edb 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -434,9 +434,9 @@ static int panel_simple_get_timings(struct drm_panel *panel,
static enum drm_panel_orientation panel_simple_get_orientation(struct drm_panel *panel)
{
- struct panel_simple *p = to_panel_simple(panel);
+ //struct panel_simple *p = to_panel_simple(panel);
- return p->orientation;
+ return DRM_MODE_PANEL_ORIENTATION_UNKNOWN;
}
static const struct drm_panel_funcs panel_simple_funcs = {
--
2.33.1