aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_init.c
diff options
context:
space:
mode:
authorAnthony Koo <Anthony.Koo@amd.com>2020-02-05 20:47:41 -0500
committerAlex Deucher <alexander.deucher@amd.com>2020-02-25 11:05:35 -0500
commitaccde06fcb7fd82abdfa77ecf4dc63d724a6d9bf (patch)
tree80951f9aa1cc311c9a520c475cea867905fa90eb /drivers/gpu/drm/amd/display/dc/dcn10/dcn10_init.c
parentdrm/amd/display: Fix HDMI repeater authentication (diff)
downloadwireguard-linux-accde06fcb7fd82abdfa77ecf4dc63d724a6d9bf.tar.xz
wireguard-linux-accde06fcb7fd82abdfa77ecf4dc63d724a6d9bf.zip
drm/amd/display: Add function pointers for panel related hw functions
[Why] Make panel backlight and power on/off functions into hardware specific function pointers [How] Add function pointers for panel related hw functions - is_panel_powered_on - is_panel_backlight_on Signed-off-by: Anthony Koo <Anthony.Koo@amd.com> Reviewed-by: Aric Cyr <Aric.Cyr@amd.com> Acked-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com> Acked-by: Harry Wentland <harry.wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/dcn10/dcn10_init.c')
-rw-r--r--drivers/gpu/drm/amd/display/dc/dcn10/dcn10_init.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_init.c b/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_init.c
index b88ef9703b2b..dd02d3983695 100644
--- a/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_init.c
+++ b/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_init.c
@@ -87,6 +87,8 @@ static const struct hwseq_private_funcs dcn10_private_funcs = {
.reset_hw_ctx_wrap = dcn10_reset_hw_ctx_wrap,
.enable_stream_timing = dcn10_enable_stream_timing,
.edp_backlight_control = dce110_edp_backlight_control,
+ .is_panel_backlight_on = dce110_is_panel_backlight_on,
+ .is_panel_powered_on = dce110_is_panel_powered_on,
.disable_stream_gating = NULL,
.enable_stream_gating = NULL,
.setup_vupdate_interrupt = dcn10_setup_vupdate_interrupt,