Prepare dropping the alias "dev" for struct drm_crtc::drm_dev. "drm_dev"
is the better name as "dev" is usually a struct device pointer.

No semantic changes.

Signed-off-by: Uwe Kleine-König <u.kleine-koe...@pengutronix.de>
---
 drivers/gpu/drm/hyperv/hyperv_drm_modeset.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/hyperv/hyperv_drm_modeset.c 
b/drivers/gpu/drm/hyperv/hyperv_drm_modeset.c
index 6c6b57298797..07ccc3cdc515 100644
--- a/drivers/gpu/drm/hyperv/hyperv_drm_modeset.c
+++ b/drivers/gpu/drm/hyperv/hyperv_drm_modeset.c
@@ -102,7 +102,7 @@ static void hyperv_pipe_enable(struct 
drm_simple_display_pipe *pipe,
                               struct drm_crtc_state *crtc_state,
                               struct drm_plane_state *plane_state)
 {
-       struct hyperv_drm_device *hv = to_hv(pipe->crtc.dev);
+       struct hyperv_drm_device *hv = to_hv(pipe->crtc.drm_dev);
        struct drm_shadow_plane_state *shadow_plane_state = 
to_drm_shadow_plane_state(plane_state);
 
        hyperv_hide_hw_ptr(hv->hdev);
@@ -117,7 +117,7 @@ static int hyperv_pipe_check(struct drm_simple_display_pipe 
*pipe,
                             struct drm_plane_state *plane_state,
                             struct drm_crtc_state *crtc_state)
 {
-       struct hyperv_drm_device *hv = to_hv(pipe->crtc.dev);
+       struct hyperv_drm_device *hv = to_hv(pipe->crtc.drm_dev);
        struct drm_framebuffer *fb = plane_state->fb;
 
        if (fb->format->format != DRM_FORMAT_XRGB8888)
@@ -135,7 +135,7 @@ static int hyperv_pipe_check(struct drm_simple_display_pipe 
*pipe,
 static void hyperv_pipe_update(struct drm_simple_display_pipe *pipe,
                               struct drm_plane_state *old_state)
 {
-       struct hyperv_drm_device *hv = to_hv(pipe->crtc.dev);
+       struct hyperv_drm_device *hv = to_hv(pipe->crtc.drm_dev);
        struct drm_plane_state *state = pipe->plane.state;
        struct drm_shadow_plane_state *shadow_plane_state = 
to_drm_shadow_plane_state(state);
        struct drm_rect rect;
-- 
2.39.2

Reply via email to