By recording the correct device tree node, it's possible to use OF aliases for deterministic numbering of the I2C adapter. Fixes: aea9e8bac578 ("video: add dw-hdmi driver") Signed-off-by: Ahmad Fatoum <a.fatoum@xxxxxxxxxxxxxx> --- drivers/video/dw-hdmi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/video/dw-hdmi.c b/drivers/video/dw-hdmi.c index 73201836b7e5..cd5de17e9bd7 100644 --- a/drivers/video/dw-hdmi.c +++ b/drivers/video/dw-hdmi.c @@ -433,6 +433,7 @@ static struct i2c_adapter *dw_hdmi_i2c_adapter(struct dw_hdmi *hdmi) adap = &i2c->adap; adap->dev.parent = hdmi->dev; + adap->dev.of_node = hdmi->dev->of_node; adap->master_xfer = dw_hdmi_i2c_xfer; adap->nr = -1; -- 2.39.5