mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 14:34:27 -05:00 
			
		
		
		
	Deleted (upstreamed): generic/backport-5.15/890-v5.19-net-sfp-Add-tx-fault-workaround-for-Huawei-MA5671A-SFP-ON.patch [1] Other patches automatically rebased. [1] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.41&id=99858114a3b2c8f5f8707d9bbd46c50f547c87c0 Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com>
		
			
				
	
	
		
			30 lines
		
	
	
		
			988 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			988 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
From f285cba93ac9425078740d20456f34c94ad7511c Mon Sep 17 00:00:00 2001
 | 
						|
From: Dom Cobley <popcornmix@gmail.com>
 | 
						|
Date: Thu, 13 Jan 2022 15:47:23 +0000
 | 
						|
Subject: [PATCH] drm/vc4: hdmi: Fix clock value used for validating
 | 
						|
 hdmi modes
 | 
						|
 | 
						|
We are using mode->crt_clock here which is filled by drm_mode_set_crtcinfo()
 | 
						|
which is called right after .mode_valid.
 | 
						|
 | 
						|
Use mode->clock which is valid here.
 | 
						|
 | 
						|
Fixes: 624d93a4f0 ("drm/vc4: hdmi: Move clock calculation into its own function")
 | 
						|
 | 
						|
Signed-off-by: Dom Cobley <popcornmix@gmail.com>
 | 
						|
---
 | 
						|
 drivers/gpu/drm/vc4/vc4_hdmi.c | 2 +-
 | 
						|
 1 file changed, 1 insertion(+), 1 deletion(-)
 | 
						|
 | 
						|
--- a/drivers/gpu/drm/vc4/vc4_hdmi.c
 | 
						|
+++ b/drivers/gpu/drm/vc4/vc4_hdmi.c
 | 
						|
@@ -1496,7 +1496,7 @@ vc4_hdmi_encoder_compute_mode_clock(cons
 | 
						|
 				    unsigned int bpc,
 | 
						|
 				    enum vc4_hdmi_output_format fmt)
 | 
						|
 {
 | 
						|
-	unsigned long long clock = mode->crtc_clock * 1000;
 | 
						|
+	unsigned long long clock = mode->clock * 1000;
 | 
						|
 
 | 
						|
 	if (mode->flags & DRM_MODE_FLAG_DBLCLK)
 | 
						|
 		clock = clock * 2;
 |