diff options
author | Dave Airlie <airlied@redhat.com> | 2019-04-23 02:56:01 +0300 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2019-04-24 05:33:30 +0300 |
commit | 83c163f7eb5948051b6fcb084ab3b81880c147dd (patch) | |
tree | f8343b49e4650b306da60ca67104deb57d527a06 /include/drm/drm_device.h | |
parent | 61ae227032e7f9278cc7d7224045e77e0dedb33e (diff) | |
download | linux-83c163f7eb5948051b6fcb084ab3b81880c147dd.tar.xz |
drm/legacy: place all drm legacy members under DRM_LEGACY.
This places a bunch of the legacy members of drm_device into
only being there when legacy is enabled.
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include/drm/drm_device.h')
-rw-r--r-- | include/drm/drm_device.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/drm/drm_device.h b/include/drm/drm_device.h index d5e092dccf3e..7f9ef709b2b6 100644 --- a/include/drm/drm_device.h +++ b/include/drm/drm_device.h @@ -306,7 +306,7 @@ struct drm_device { /* Everything below here is for legacy driver, never use! */ /* private: */ - +#if IS_ENABLED(CONFIG_DRM_LEGACY) /* Context handle management - linked list of context handles */ struct list_head ctxlist; @@ -353,6 +353,7 @@ struct drm_device { /* Scatter gather memory */ struct drm_sg_mem *sg; +#endif }; #endif |