mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 00:41:17 +00:00
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)
|
||
|
{
|
||
|
/*
|