Skip to content

Commit

Permalink
drm/amd/display: drop unused function set_abm_event()
Browse files Browse the repository at this point in the history
set_abm_event() is never actually used. So, drop it.

Fixes: b8fe563 ("drm/amd/display: Refactor ABM feature")
Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Tom Rix <trix@redhat.com>
Reviewed-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Signed-off-by: Hamza Mahfooz <hamza.mahfooz@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
  • Loading branch information
Hamza Mahfooz authored and Alex Deucher committed Jun 9, 2023
1 parent 48dd83c commit fd73c85
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
12 changes: 0 additions & 12 deletions drivers/gpu/drm/amd/display/dc/dce/dmub_abm.c
Original file line number Diff line number Diff line change
Expand Up @@ -131,17 +131,6 @@ static bool dmub_abm_set_pipe_ex(struct abm *abm, uint32_t otg_inst, uint32_t op
return ret;
}

static bool dmub_abm_set_event_ex(struct abm *abm, unsigned int full_screen, unsigned int video_mode,
unsigned int hdr_mode, unsigned int panel_inst)
{
bool ret = false;
unsigned int feature_support;

feature_support = abm_feature_support(abm, panel_inst);

return ret;
}

static bool dmub_abm_set_backlight_level_pwm_ex(struct abm *abm,
unsigned int backlight_pwm_u16_16,
unsigned int frame_ramp,
Expand All @@ -167,7 +156,6 @@ static const struct abm_funcs abm_funcs = {
.init_abm_config = dmub_abm_init_config_ex,
.set_abm_pause = dmub_abm_set_pause_ex,
.set_pipe_ex = dmub_abm_set_pipe_ex,
.set_abm_event = dmub_abm_set_event_ex,
.set_backlight_level_pwm = dmub_abm_set_backlight_level_pwm_ex,
};

Expand Down
2 changes: 0 additions & 2 deletions drivers/gpu/drm/amd/display/dc/inc/hw/abm.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,6 @@ struct abm_funcs {
unsigned int otg_inst,
unsigned int option,
unsigned int panel_inst);
bool (*set_abm_event)(struct abm *abm, unsigned int full_screen, unsigned int video_mode,
unsigned int hdr_mode, unsigned int panel_inst);
};

#endif

0 comments on commit fd73c85

Please sign in to comment.