mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
77e97abf12
Also removes random module and switches to new bcm2711 thermal driver. Boot tested on RPi 4B v1.1 4G. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
27 lines
863 B
Diff
27 lines
863 B
Diff
From dfc6e670144207251dc0902d1756bc89ef6cd1dc Mon Sep 17 00:00:00 2001
|
|
From: Maxime Ripard <maxime@cerno.tech>
|
|
Date: Thu, 13 Feb 2020 12:31:09 +0100
|
|
Subject: [PATCH] drm/vc4: hdmi: Rename drm_encoder pointer in
|
|
mode_valid
|
|
|
|
The mode_valid hook on the encoder uses a pointer to a drm_encoder called
|
|
crtc, which is pretty confusing. Let's rename it to encoder to make it
|
|
clear what it is.
|
|
|
|
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
|
|
---
|
|
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
|
|
@@ -559,7 +559,7 @@ static void vc4_hdmi_encoder_enable(stru
|
|
}
|
|
|
|
static enum drm_mode_status
|
|
-vc4_hdmi_encoder_mode_valid(struct drm_encoder *crtc,
|
|
+vc4_hdmi_encoder_mode_valid(struct drm_encoder *encoder,
|
|
const struct drm_display_mode *mode)
|
|
{
|
|
/*
|