Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e758aba1 authored by Kees Cook's avatar Kees Cook
Browse files

drm/amd/powerplay: rv: Use designated initializers



As done for vega10 in commit 3ddd396f ("drm/amd/powerplay: Use
designated initializers") mark other tableFunction entries with designated
initializers. The randstruct plugin requires designated initializers for
structures that are entirely function pointers.

Cc: Rex Zhu <Rex.Zhu@amd.com>
Cc: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: default avatarKees Cook <keescook@chromium.org>
Acked-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 520eccdf
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -308,8 +308,8 @@ static int rv_tf_set_num_active_display(struct pp_hwmgr *hwmgr, void *input,
}

static const struct phm_master_table_item rv_set_power_state_list[] = {
	{ NULL, rv_tf_set_clock_limit },
	{ NULL, rv_tf_set_num_active_display },
	{ .tableFunction = rv_tf_set_clock_limit },
	{ .tableFunction = rv_tf_set_num_active_display },
	{ }
};

@@ -382,7 +382,7 @@ static int rv_tf_disable_gfx_off(struct pp_hwmgr *hwmgr,
}

static const struct phm_master_table_item rv_disable_dpm_list[] = {
	{NULL, rv_tf_disable_gfx_off},
	{ .tableFunction = rv_tf_disable_gfx_off },
	{ },
};

@@ -407,7 +407,7 @@ static int rv_tf_enable_gfx_off(struct pp_hwmgr *hwmgr,
}

static const struct phm_master_table_item rv_enable_dpm_list[] = {
	{NULL, rv_tf_enable_gfx_off},
	{ .tableFunction = rv_tf_enable_gfx_off },
	{ },
};