drm/i915: Set connector_state->connector using the helper.

The atomic helper sets connector_state->connector, which the i915
code didn't. This will become a problem when we start using it.

Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Acked-by: Thierry Reding <treding@nvidia.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1451908400-25147-1-git-send-email-maarten.lankhorst@linux.intel.com
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
Maarten Lankhorst 2016-01-04 12:53:15 +01:00 committed by Daniel Vetter
parent 0f646425b9
commit 5350a03124
1 changed files with 2 additions and 4 deletions

View File

@ -6475,13 +6475,11 @@ static void intel_connector_check_state(struct intel_connector *connector)
int intel_connector_init(struct intel_connector *connector) int intel_connector_init(struct intel_connector *connector)
{ {
struct drm_connector_state *connector_state; drm_atomic_helper_connector_reset(&connector->base);
connector_state = kzalloc(sizeof *connector_state, GFP_KERNEL); if (!connector->base.state)
if (!connector_state)
return -ENOMEM; return -ENOMEM;
connector->base.state = connector_state;
return 0; return 0;
} }