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

Commit 2bc499f2 authored by Maria Yu's avatar Maria Yu
Browse files

drm/msm/sde: Fix for build error of sde_rsc_client_state_update



sde_rsc_client_state_update missed a parameter compared
to CONFIG_DRM_SDE_RSC defined case.
Causing build error when CONFIG_DRM_SDE_RSC is not
defined.

Change-Id: I07a1dc9116dae28df414a4674021ea53831ba834
Signed-off-by: default avatarMaria Yu <aiquny@codeaurora.org>
parent e7325167
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -259,7 +259,8 @@ static inline void sde_rsc_client_destroy(struct sde_rsc_client *client)

static inline int sde_rsc_client_state_update(struct sde_rsc_client *client,
	enum sde_rsc_state state,
	struct sde_rsc_cmd_config *config, int crtc_id)
	struct sde_rsc_cmd_config *config, int crtc_id,
	int *wait_vblank_crtc_id)
{
	return 0;
}