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>
28 lines
1 KiB
Diff
28 lines
1 KiB
Diff
From 0bdbf979e53fcd8673fad4a4a9e82159480dcd71 Mon Sep 17 00:00:00 2001
|
|
From: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
Date: Thu, 25 Jan 2024 17:27:42 +0000
|
|
Subject: [PATCH] drm/vc4: Initialise the tv_mode property default from
|
|
cmdline_mode.
|
|
|
|
With the command line parser now providing the information about
|
|
the tv mode, use that as the preferred choice for initialising the
|
|
default of the tv_mode property.
|
|
|
|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
---
|
|
drivers/gpu/drm/vc4/vc4_vec.c | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
--- a/drivers/gpu/drm/vc4/vc4_vec.c
|
|
+++ b/drivers/gpu/drm/vc4/vc4_vec.c
|
|
@@ -388,7 +388,9 @@ static const struct drm_prop_enum_list l
|
|
static enum drm_connector_tv_mode
|
|
vc4_vec_get_default_mode(struct drm_connector *connector)
|
|
{
|
|
- if (vc4_vec_tv_norm) {
|
|
+ if (connector->cmdline_mode.tv_mode_specified) {
|
|
+ return connector->cmdline_mode.tv_mode;
|
|
+ } else if (vc4_vec_tv_norm) {
|
|
int ret;
|
|
|
|
ret = drm_get_tv_mode_from_name(vc4_vec_tv_norm, strlen(vc4_vec_tv_norm));
|