diff options
author | Noralf Trønnes <noralf@tronnes.org> | 2019-05-06 20:01:31 +0200 |
---|---|---|
committer | Noralf Trønnes <noralf@tronnes.org> | 2019-05-14 16:12:21 +0200 |
commit | bc93475587850c097bfbc08f2ffa81171e0a1602 (patch) | |
tree | e1ded13073ae6791c8868d59fafef883d73a4405 /include/drm/drm_fb_helper.h | |
parent | drm/fb-helper: Avoid race with DRM userspace (diff) | |
download | linux-bc93475587850c097bfbc08f2ffa81171e0a1602.tar.xz linux-bc93475587850c097bfbc08f2ffa81171e0a1602.zip |
drm/fb-helper: No need to cache rotation and sw_rotations
Getting rotation info is cheap so we can do it on demand.
This is done in preparation for the removal of struct drm_fb_helper_crtc.
Cc: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Noralf Trønnes <noralf@tronnes.org>
Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Reviewed-by: Maxime Ripard <maxime.ripard@bootlin.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190506180139.6913-4-noralf@tronnes.org
Diffstat (limited to 'include/drm/drm_fb_helper.h')
-rw-r--r-- | include/drm/drm_fb_helper.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/drm/drm_fb_helper.h b/include/drm/drm_fb_helper.h index 40af2866c26a..b0a14aef2e39 100644 --- a/include/drm/drm_fb_helper.h +++ b/include/drm/drm_fb_helper.h @@ -51,7 +51,6 @@ struct drm_fb_helper_crtc { struct drm_mode_set mode_set; struct drm_display_mode *desired_mode; int x, y; - int rotation; }; /** @@ -152,13 +151,6 @@ struct drm_fb_helper { int connector_count; int connector_info_alloc_count; /** - * @sw_rotations: - * Bitmask of all rotations requested for panel-orientation which - * could not be handled in hardware. If only one bit is set - * fbdev->fbcon_rotate_hint gets set to the requested rotation. - */ - int sw_rotations; - /** * @connector_info: * * Array of per-connector information. Do not iterate directly, but use |