Commit 50db413d authored by Tony Cheng's avatar Tony Cheng Committed by Alex Deucher

drm/amd/display: clarify delay param for REG_WAIT

Signed-off-by: default avatarTony Cheng <tony.cheng@amd.com>
Acked-by: default avatarHarry Wentland <Harry.Wentland@amd.com>
Reviewed-by: default avatarDmytro Laktyushkin <Dmytro.Laktyushkin@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent e91b5733
...@@ -185,10 +185,10 @@ ...@@ -185,10 +185,10 @@
/* macro to poll and wait for a register field to read back given value */ /* macro to poll and wait for a register field to read back given value */
#define REG_WAIT(reg_name, field, val, delay, max_try) \ #define REG_WAIT(reg_name, field, val, delay_between_poll_us, max_try) \
generic_reg_wait(CTX, \ generic_reg_wait(CTX, \
REG(reg_name), FN(reg_name, field), val,\ REG(reg_name), FN(reg_name, field), val,\
delay, max_try, __func__) delay_between_poll_us, max_try, __func__)
/* macro to update (read, modify, write) register fields /* macro to update (read, modify, write) register fields
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment