mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 01:05:18 +07:00
amdgpu/dc: make program_regamma_pwl return void
The return value was unused. Signed-off-by: Dave Airlie <airlied@redhat.com> Reviewed-by: Harry Wentland <harry.wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
2c9a7908b4
commit
4dec2aa9eb
@ -1375,7 +1375,7 @@ static void regamma_config_regions_and_segments(
|
||||
|
||||
|
||||
|
||||
bool dce110_opp_program_regamma_pwl(
|
||||
void dce110_opp_program_regamma_pwl(
|
||||
struct transform *xfm,
|
||||
const struct pwl_params *params)
|
||||
{
|
||||
@ -1386,8 +1386,6 @@ bool dce110_opp_program_regamma_pwl(
|
||||
|
||||
/* Program PWL */
|
||||
program_pwl(xfm_dce, params);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void dce110_opp_power_on_regamma_lut(
|
||||
|
@ -506,7 +506,7 @@ void dce110_opp_power_on_regamma_lut(
|
||||
struct transform *xfm,
|
||||
bool power_on);
|
||||
|
||||
bool dce110_opp_program_regamma_pwl(
|
||||
void dce110_opp_program_regamma_pwl(
|
||||
struct transform *xfm,
|
||||
const struct pwl_params *params);
|
||||
|
||||
|
@ -490,7 +490,7 @@ static void program_pwl(struct dce_transform *xfm_dce,
|
||||
}
|
||||
}
|
||||
|
||||
bool dce110_opp_program_regamma_pwl_v(
|
||||
void dce110_opp_program_regamma_pwl_v(
|
||||
struct transform *xfm,
|
||||
const struct pwl_params *params)
|
||||
{
|
||||
@ -512,8 +512,6 @@ bool dce110_opp_program_regamma_pwl_v(
|
||||
|
||||
/* Power return to auto back */
|
||||
power_on_lut(xfm, false, false, true);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void dce110_opp_power_on_regamma_lut_v(
|
||||
|
@ -43,7 +43,7 @@ void dce110_opp_v_set_csc_adjustment(
|
||||
const struct out_csc_color_matrix *tbl_entry);
|
||||
|
||||
|
||||
bool dce110_opp_program_regamma_pwl_v(
|
||||
void dce110_opp_program_regamma_pwl_v(
|
||||
struct transform *xfm,
|
||||
const struct pwl_params *params);
|
||||
|
||||
|
@ -183,7 +183,7 @@ void dpp_reset(struct transform *xfm_base)
|
||||
|
||||
|
||||
|
||||
static bool dcn10_dpp_cm_set_regamma_pwl(
|
||||
static void dcn10_dpp_cm_set_regamma_pwl(
|
||||
struct transform *xfm_base, const struct pwl_params *params)
|
||||
{
|
||||
struct dcn10_dpp *xfm = TO_DCN10_DPP(xfm_base);
|
||||
@ -198,8 +198,6 @@ static bool dcn10_dpp_cm_set_regamma_pwl(
|
||||
|
||||
dcn10_dpp_cm_program_regamma_lut(
|
||||
xfm_base, params->rgb_resulted, params->hw_points_num);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static void dcn10_dpp_cm_set_regamma_mode(
|
||||
|
@ -213,7 +213,7 @@ struct transform_funcs {
|
||||
struct transform *xfm,
|
||||
const struct pwl_params *params);
|
||||
|
||||
bool (*opp_program_regamma_pwl)(
|
||||
void (*opp_program_regamma_pwl)(
|
||||
struct transform *xfm, const struct pwl_params *params);
|
||||
|
||||
void (*opp_set_regamma_mode)(
|
||||
|
Loading…
Reference in New Issue
Block a user