diff options
author | Derek Foreman <derekf@osg.samsung.com> | 2015-07-02 18:19:54 +0200 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2015-10-21 11:33:12 +0200 |
commit | 48666d56312b337ff3f04451bf6c3f014fee1eeb (patch) | |
tree | b67ce62a940c57aac8722c3196bcf1fe38ff3bb5 /drivers/gpu/drm/vc4/vc4_drv.h | |
parent | drm/vc4: Add KMS support for Raspberry Pi. (diff) | |
download | linux-48666d56312b337ff3f04451bf6c3f014fee1eeb.tar.xz linux-48666d56312b337ff3f04451bf6c3f014fee1eeb.zip |
drm/vc4: Use the fbdev_cma helpers
Keep the fbdev_cma pointer around so we can use it on hotplog and close
to ensure the frame buffer console is in a useful state.
Signed-off-by: Derek Foreman <derekf@osg.samsung.com>
Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'drivers/gpu/drm/vc4/vc4_drv.h')
-rw-r--r-- | drivers/gpu/drm/vc4/vc4_drv.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/vc4/vc4_drv.h b/drivers/gpu/drm/vc4/vc4_drv.h index 04dd2e24fd34..57f54e0990cf 100644 --- a/drivers/gpu/drm/vc4/vc4_drv.h +++ b/drivers/gpu/drm/vc4/vc4_drv.h @@ -15,6 +15,8 @@ struct vc4_dev { struct vc4_hdmi *hdmi; struct vc4_hvs *hvs; struct vc4_crtc *crtc[3]; + + struct drm_fbdev_cma *fbdev; }; static inline struct vc4_dev * |