[PATCH v2 1/9] drm/dp: Store drm_device in MST topology manager

2017-01-24 Thread Dhinakaran Pandiyan
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 Pa

Re: [Intel-gfx] [PATCH v2 1/9] drm/dp: Store drm_device in MST topology manager

2017-01-24 Thread Dave Airlie
On 25 January 2017 at 09:49, Dhinakaran Pandiyan wrote: > 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 structure