mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 10:58:48 +09:00
drm/bridge: lt8912b: Fix bridge_detach
[ Upstream commit 941882a0e96d245f38116e940912b404b6a93c6f ]
The driver calls lt8912_bridge_detach() from its lt8912_remove()
function. As the DRM core detaches bridges automatically, this leads to
calling lt8912_bridge_detach() twice. The code probably has tried to
manage the double-call with the 'is_attached' variable, but the driver
never sets the variable to false, so its of no help.
Fix the issue by dropping the call to lt8912_bridge_detach() from
lt8912_remove(), as the DRM core will handle the detach call for us,
and also drop the useless is_attached field.
Fixes: 30e2ae943c ("drm/bridge: Introduce LT8912B DSI to HDMI bridge")
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Reviewed-by: Robert Foss <rfoss@kernel.org>
Signed-off-by: Robert Foss <rfoss@kernel.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20230804-lt8912b-v1-1-c542692c6a2f@ideasonboard.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
45350e5471
commit
2cfa9dc32c
@@ -45,7 +45,6 @@ struct lt8912 {
|
|||||||
|
|
||||||
u8 data_lanes;
|
u8 data_lanes;
|
||||||
bool is_power_on;
|
bool is_power_on;
|
||||||
bool is_attached;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static int lt8912_write_init_config(struct lt8912 *lt)
|
static int lt8912_write_init_config(struct lt8912 *lt)
|
||||||
@@ -575,8 +574,6 @@ static int lt8912_bridge_attach(struct drm_bridge *bridge,
|
|||||||
if (ret)
|
if (ret)
|
||||||
goto error;
|
goto error;
|
||||||
|
|
||||||
lt->is_attached = true;
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
error:
|
error:
|
||||||
@@ -588,15 +585,13 @@ static void lt8912_bridge_detach(struct drm_bridge *bridge)
|
|||||||
{
|
{
|
||||||
struct lt8912 *lt = bridge_to_lt8912(bridge);
|
struct lt8912 *lt = bridge_to_lt8912(bridge);
|
||||||
|
|
||||||
if (lt->is_attached) {
|
lt8912_hard_power_off(lt);
|
||||||
lt8912_hard_power_off(lt);
|
|
||||||
|
|
||||||
if (lt->hdmi_port->ops & DRM_BRIDGE_OP_HPD)
|
if (lt->hdmi_port->ops & DRM_BRIDGE_OP_HPD)
|
||||||
drm_bridge_hpd_disable(lt->hdmi_port);
|
drm_bridge_hpd_disable(lt->hdmi_port);
|
||||||
|
|
||||||
drm_connector_unregister(<->connector);
|
drm_connector_unregister(<->connector);
|
||||||
drm_connector_cleanup(<->connector);
|
drm_connector_cleanup(<->connector);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static enum drm_connector_status
|
static enum drm_connector_status
|
||||||
@@ -751,7 +746,6 @@ static void lt8912_remove(struct i2c_client *client)
|
|||||||
{
|
{
|
||||||
struct lt8912 *lt = i2c_get_clientdata(client);
|
struct lt8912 *lt = i2c_get_clientdata(client);
|
||||||
|
|
||||||
lt8912_bridge_detach(<->bridge);
|
|
||||||
drm_bridge_remove(<->bridge);
|
drm_bridge_remove(<->bridge);
|
||||||
lt8912_free_i2c(lt);
|
lt8912_free_i2c(lt);
|
||||||
lt8912_put_dt(lt);
|
lt8912_put_dt(lt);
|
||||||
|
|||||||
Reference in New Issue
Block a user