提交 769dbc16 编写于 作者: B Brandon Syu 提交者: Alex Deucher

drm/amd/display: fixed that I2C over AUX didn't read data issue

[Why]
The variable mismatch assignment error.

[How]
To use uint32_t replace it.
Signed-off-by: NBrandon Syu <Brandon.Syu@amd.com>
Reviewed-by: NCharlene Liu <Charlene.Liu@amd.com>
Acked-by: NLeo Li <sunpeng.li@amd.com>
Signed-off-by: NAlex Deucher <alexander.deucher@amd.com>
上级 fa11d3c9
......@@ -589,7 +589,7 @@ bool dal_ddc_service_query_ddc_data(
bool dal_ddc_submit_aux_command(struct ddc_service *ddc,
struct aux_payload *payload)
{
uint8_t retrieved = 0;
uint32_t retrieved = 0;
bool ret = 0;
if (!ddc)
......
......@@ -42,7 +42,7 @@ struct aux_payload {
bool write;
bool mot;
uint32_t address;
uint8_t length;
uint32_t length;
uint8_t *data;
/*
* used to return the reply type of the transaction
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册