drm/bridge: megachips-stdpxxxx-ge-b850v3-fw: Fix bridge initialization
Reordering of the device nodes based on unit address resulted in ge_b850v3_lvds_attach() being called before ge_b850v3_lvds_ptr->stdp4028_i2c was populated. This patch moves the drm bridge initialization from ge_b850v3_lvds_init() to stdp4028_ge_b850v3_fw_probe() ensuring that ge_b850v3_lvds_ptr->stdp4028_i2c is properly populated. Signed-off-by: Peter Senna Tschudin <peter.senna@collabora.com> Signed-off-by: Archit Taneja <architt@codeaurora.org> Link: http://patchwork.freedesktop.org/patch/msgid/20170330081928.8537-1-peter.senna@collabora.com
This commit is contained in:
parent
50021ff1ad
commit
a68ee76f4a
|
@ -279,10 +279,6 @@ static int ge_b850v3_lvds_init(struct device *dev)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
ge_b850v3_lvds_ptr->bridge.funcs = &ge_b850v3_lvds_funcs;
|
|
||||||
ge_b850v3_lvds_ptr->bridge.of_node = dev->of_node;
|
|
||||||
drm_bridge_add(&ge_b850v3_lvds_ptr->bridge);
|
|
||||||
|
|
||||||
success:
|
success:
|
||||||
mutex_unlock(&ge_b850v3_lvds_dev_mutex);
|
mutex_unlock(&ge_b850v3_lvds_dev_mutex);
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -317,6 +313,11 @@ static int stdp4028_ge_b850v3_fw_probe(struct i2c_client *stdp4028_i2c,
|
||||||
ge_b850v3_lvds_ptr->stdp4028_i2c = stdp4028_i2c;
|
ge_b850v3_lvds_ptr->stdp4028_i2c = stdp4028_i2c;
|
||||||
i2c_set_clientdata(stdp4028_i2c, ge_b850v3_lvds_ptr);
|
i2c_set_clientdata(stdp4028_i2c, ge_b850v3_lvds_ptr);
|
||||||
|
|
||||||
|
/* drm bridge initialization */
|
||||||
|
ge_b850v3_lvds_ptr->bridge.funcs = &ge_b850v3_lvds_funcs;
|
||||||
|
ge_b850v3_lvds_ptr->bridge.of_node = dev->of_node;
|
||||||
|
drm_bridge_add(&ge_b850v3_lvds_ptr->bridge);
|
||||||
|
|
||||||
/* Clear pending interrupts since power up. */
|
/* Clear pending interrupts since power up. */
|
||||||
i2c_smbus_write_word_data(stdp4028_i2c,
|
i2c_smbus_write_word_data(stdp4028_i2c,
|
||||||
STDP4028_DPTX_IRQ_STS_REG,
|
STDP4028_DPTX_IRQ_STS_REG,
|
||||||
|
|
Loading…
Reference in New Issue