Commit 9a00d0ff authored by Derek Lai's avatar Derek Lai Committed by Alex Deucher

drm/amd/display: Use res_cap to acquire i2c instead of pipe count

[Why]
We should be using the ddc_num from res_caps. As the
pipe count != number of i2c resources.

[How]
Use ddc_num from res_cap instead of pipe count.
Signed-off-by: default avatarDerek Lai <Derek.Lai@amd.com>
Reviewed-by: default avatarCharlene Liu <Charlene.Liu@amd.com>
Acked-by: default avatarBhawanpreet Lakha <Bhawanpreet.Lakha@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 470e2ca5
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
#include <linux/delay.h> #include <linux/delay.h>
#include "resource.h"
#include "dce_i2c.h" #include "dce_i2c.h"
#include "dce_i2c_hw.h" #include "dce_i2c_hw.h"
#include "reg_helper.h" #include "reg_helper.h"
...@@ -390,7 +391,7 @@ struct dce_i2c_hw *acquire_i2c_hw_engine( ...@@ -390,7 +391,7 @@ struct dce_i2c_hw *acquire_i2c_hw_engine(
if (ddc->hw_info.hw_supported) { if (ddc->hw_info.hw_supported) {
enum gpio_ddc_line line = dal_ddc_get_line(ddc); enum gpio_ddc_line line = dal_ddc_get_line(ddc);
if (line < pool->pipe_count) if (line < pool->res_cap->num_ddc)
dce_i2c_hw = pool->hw_i2cs[line]; dce_i2c_hw = pool->hw_i2cs[line];
} }
......
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