diff options
Diffstat (limited to 'drivers/gpu/host1x/drm/fb.c')
-rw-r--r-- | drivers/gpu/host1x/drm/fb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/host1x/drm/fb.c b/drivers/gpu/host1x/drm/fb.c index 03914953cb1c..6ed885aead48 100644 --- a/drivers/gpu/host1x/drm/fb.c +++ b/drivers/gpu/host1x/drm/fb.c @@ -11,7 +11,7 @@ static void tegra_drm_fb_output_poll_changed(struct drm_device *drm) { - struct host1x *host1x = drm->dev_private; + struct host1x_drm *host1x = drm->dev_private; drm_fbdev_cma_hotplug_event(host1x->fbdev); } @@ -23,7 +23,7 @@ static const struct drm_mode_config_funcs tegra_drm_mode_funcs = { int tegra_drm_fb_init(struct drm_device *drm) { - struct host1x *host1x = drm->dev_private; + struct host1x_drm *host1x = drm->dev_private; struct drm_fbdev_cma *fbdev; drm->mode_config.min_width = 0; @@ -46,7 +46,7 @@ int tegra_drm_fb_init(struct drm_device *drm) void tegra_drm_fb_exit(struct drm_device *drm) { - struct host1x *host1x = drm->dev_private; + struct host1x_drm *host1x = drm->dev_private; drm_fbdev_cma_fini(host1x->fbdev); } |