Commit 4870bd88 authored by Leo (Hanghong) Ma's avatar Leo (Hanghong) Ma Committed by Alex Deucher
Browse files

drm/amd/display: Fix typo for helpers function name



[why]
Word "helper" was misspelled as "helpes" in
dm_helpes_dmub_outbox0_interrupt_control function.

[how]
Fix the spelling.

Tested-by: default avatarDaniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: default avatarLeo (Hanghong) Ma <hanghong.ma@amd.com>
Reviewed-by: default avatarYongqiang Sun <yongqiang.sun@amd.com>
Acked-by: default avatarSolomon Chiu <solomon.chiu@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 90d1a626
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -698,7 +698,7 @@ void dm_helpers_free_gpu_mem(
	}
}

bool dm_helpes_dmub_outbox0_interrupt_control(struct dc_context *ctx, bool enable)
bool dm_helpers_dmub_outbox0_interrupt_control(struct dc_context *ctx, bool enable)
{
	// TODO
	return true;
+1 −1
Original line number Diff line number Diff line
@@ -180,5 +180,5 @@ bool dc_dmub_srv_get_dmub_outbox0_msg(const struct dc *dc, struct dmcub_trace_bu

void dc_dmub_trace_event_control(struct dc *dc, bool enable)
{
	dm_helpes_dmub_outbox0_interrupt_control(dc->ctx, enable);
	dm_helpers_dmub_outbox0_interrupt_control(dc->ctx, enable);
}
+1 −1
Original line number Diff line number Diff line
@@ -156,6 +156,6 @@ void dm_set_dcn_clocks(
		struct dc_context *ctx,
		struct dc_clocks *clks);

bool dm_helpes_dmub_outbox0_interrupt_control(struct dc_context *ctx, bool enable);
bool dm_helpers_dmub_outbox0_interrupt_control(struct dc_context *ctx, bool enable);

#endif /* __DM_HELPERS__ */