diff options
author | Gabriel Krisman Bertazi <krisman@collabora.co.uk> | 2017-08-31 21:52:14 +0200 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2017-09-04 10:24:18 +0200 |
commit | 6b8ed8720011f703bd9be63c905b592666e1bf62 (patch) | |
tree | 72c6fe2eecaed409a25a10b8a80b4ae90ba216df /include/uapi/drm/drm_mode.h | |
parent | drm/tve200: Replace custom connector with panel bridge (diff) | |
download | linux-6b8ed8720011f703bd9be63c905b592666e1bf62.tar.xz linux-6b8ed8720011f703bd9be63c905b592666e1bf62.zip |
drm: Fix example comment of format modifier blob
To represent formats 98-102, the supported formats mask must be
0x7c00000000 and not 0x3c00000000.
Signed-off-by: Gabriel Krisman Bertazi <krisman@collabora.co.uk>
Reviewed-by: Ben Widawsky <ben@bwidawsk.net>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20170831195215.13302-1-krisman@collabora.co.uk
Diffstat (limited to 'include/uapi/drm/drm_mode.h')
-rw-r--r-- | include/uapi/drm/drm_mode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/uapi/drm/drm_mode.h b/include/uapi/drm/drm_mode.h index a2bb7161f020..e040c952accc 100644 --- a/include/uapi/drm/drm_mode.h +++ b/include/uapi/drm/drm_mode.h @@ -749,9 +749,9 @@ struct drm_format_modifier { * If the number formats grew to 128, and formats 98-102 are * supported with the modifier: * - * 0x0000003c00000000 0000000000000000 + * 0x0000007c00000000 0000000000000000 * ^ - * |__offset = 64, formats = 0x3c00000000 + * |__offset = 64, formats = 0x7c00000000 * */ __u64 formats; |