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:
Dave Airlie 2017-09-29 14:34:35 +10:00 committed by Alex Deucher
parent 2c9a7908b4
commit 4dec2aa9eb
6 changed files with 6 additions and 12 deletions

View File

@ -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(

View File

@ -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);

View File

@ -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(

View File

@ -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);

View File

@ -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(

View File

@ -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)(