diff options
author | Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com> | 2017-01-24 18:49:29 -0500 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2017-01-25 00:01:48 -0500 |
commit | 7b0a89a6db9a5912065e174162ec4a653c9b25d6 (patch) | |
tree | 8bde147678ac1428b494143fd303f21664a6bec2 /drivers/gpu/drm/nouveau/nv50_display.c | |
parent | 442ffefc0c3f6fa854dbda2e2d5e15473ad8f5a6 (diff) |
drm/dp: Store drm_device in MST topology manager
struct drm_dp_mst_topology_mgr currently stores a pointer to struct dev.
Changing this to instead hold a pointer to drm_device is more useful as it
gives access to DRM structures. This also makes it consistent with other
DRM structures like drm_crtc, drm_connector etc.
Signed-off-by: Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com>
Reviewed-by: Dave Airlie <airlied@redhat.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/1485301777-3465-2-git-send-email-dhinakaran.pandiyan@intel.com
Diffstat (limited to 'drivers/gpu/drm/nouveau/nv50_display.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/nv50_display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nv50_display.c b/drivers/gpu/drm/nouveau/nv50_display.c index cb85cb72dc1c..452da483ca01 100644 --- a/drivers/gpu/drm/nouveau/nv50_display.c +++ b/drivers/gpu/drm/nouveau/nv50_display.c | |||
@@ -3417,7 +3417,7 @@ nv50_mstm_new(struct nouveau_encoder *outp, struct drm_dp_aux *aux, int aux_max, | |||
3417 | mstm->outp = outp; | 3417 | mstm->outp = outp; |
3418 | mstm->mgr.cbs = &nv50_mstm; | 3418 | mstm->mgr.cbs = &nv50_mstm; |
3419 | 3419 | ||
3420 | ret = drm_dp_mst_topology_mgr_init(&mstm->mgr, dev->dev, aux, aux_max, | 3420 | ret = drm_dp_mst_topology_mgr_init(&mstm->mgr, dev, aux, aux_max, |
3421 | max_payloads, conn_base_id); | 3421 | max_payloads, conn_base_id); |
3422 | if (ret) | 3422 | if (ret) |
3423 | return ret; | 3423 | return ret; |