aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/drm
diff options
context:
space:
mode:
authorSam Ravnborg <sam@ravnborg.org>2020-02-15 19:35:03 +0100
committerSam Ravnborg <sam@ravnborg.org>2020-02-15 21:15:46 +0100
commit885a066e9603add45a70b93ecf243b1aae4a4423 (patch)
treec7c69c0e8826c0d85484b3c83b88e950a4628714 /include/drm
parentdrm: drop unused drm_crtc callback (diff)
downloadwireguard-linux-885a066e9603add45a70b93ecf243b1aae4a4423.tar.xz
wireguard-linux-885a066e9603add45a70b93ecf243b1aae4a4423.zip
drm: drop unused drm_display_mode.private
drm_display_mode.private was only referenced in one place where is was copied but never assigned. Drop the copy and drop the field in drm_display_mode. Adjust the comment of private_flags as is referred to the comment for private. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> Cc: Sean Paul <seanpaul@chromium.org> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20200215183503.GA17310@ravnborg.org
Diffstat (limited to 'include/drm')
-rw-r--r--include/drm/drm_modes.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/include/drm/drm_modes.h b/include/drm/drm_modes.h
index e946e20c61d8..99134d4f35eb 100644
--- a/include/drm/drm_modes.h
+++ b/include/drm/drm_modes.h
@@ -371,20 +371,13 @@ struct drm_display_mode {
int crtc_vtotal;
/**
- * @private:
+ * @private_flags:
*
- * Pointer for driver private data. This can only be used for mode
+ * Driver private flags. private_flags can only be used for mode
* objects passed to drivers in modeset operations. It shouldn't be used
* by atomic drivers since they can store any additional data by
* subclassing state structures.
*/
- int *private;
-
- /**
- * @private_flags:
- *
- * Similar to @private, but just an integer.
- */
int private_flags;
/**