[Intel-gfx] [PATCH 2/9] drm/tegra: Assign conn_state->connector when allocating connector state.
Maarten Lankhorst
maarten.lankhorst at linux.intel.com
Tue Nov 24 01:34:29 PST 2015
Signed-off-by: Maarten Lankhorst <maarten.lankhorst at linux.intel.com>
---
drivers/gpu/drm/tegra/dsi.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/tegra/dsi.c b/drivers/gpu/drm/tegra/dsi.c
index f0a138ef68ce..6b8ae3d08eeb 100644
--- a/drivers/gpu/drm/tegra/dsi.c
+++ b/drivers/gpu/drm/tegra/dsi.c
@@ -751,8 +751,10 @@ static void tegra_dsi_connector_reset(struct drm_connector *connector)
connector->state = NULL;
state = kzalloc(sizeof(*state), GFP_KERNEL);
- if (state)
+ if (state) {
+ state->base.connector = connector;
connector->state = &state->base;
+ }
}
static struct drm_connector_state *
--
2.1.0
More information about the Intel-gfx
mailing list