diff options
author | Dave Airlie <airlied@redhat.com> | 2017-08-28 20:36:06 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2017-08-28 20:36:06 -0400 |
commit | 095e2d04f9fa88a7c6923734ab4162833ff4f230 (patch) | |
tree | ff1496efcbbe72839cb9705c5de1ea32f3c02dec | |
parent | ffa9443fb3d3eddf0fdf6ac473dc8b5c87f08f15 (diff) | |
parent | f44d85389e17b2e960620c1c6d89bda978a11f2b (diff) |
Merge tag 'drm-misc-next-fixes-2017-08-28' of git://anongit.freedesktop.org/git/drm-misc into drm-next
UAPI Changes:
- Rename u32 to __u32 in struct drm_format_modifier_blob (Lionel)
Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
* tag 'drm-misc-next-fixes-2017-08-28' of git://anongit.freedesktop.org/git/drm-misc:
drm: rename u32 in __u32 in uapi
-rw-r--r-- | include/uapi/drm/drm_mode.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/uapi/drm/drm_mode.h b/include/uapi/drm/drm_mode.h index a2bb7161f020..54fc38c3c3f1 100644 --- a/include/uapi/drm/drm_mode.h +++ b/include/uapi/drm/drm_mode.h | |||
@@ -715,24 +715,24 @@ struct drm_mode_atomic { | |||
715 | struct drm_format_modifier_blob { | 715 | struct drm_format_modifier_blob { |
716 | #define FORMAT_BLOB_CURRENT 1 | 716 | #define FORMAT_BLOB_CURRENT 1 |
717 | /* Version of this blob format */ | 717 | /* Version of this blob format */ |
718 | u32 version; | 718 | __u32 version; |
719 | 719 | ||
720 | /* Flags */ | 720 | /* Flags */ |
721 | u32 flags; | 721 | __u32 flags; |
722 | 722 | ||
723 | /* Number of fourcc formats supported */ | 723 | /* Number of fourcc formats supported */ |
724 | u32 count_formats; | 724 | __u32 count_formats; |
725 | 725 | ||
726 | /* Where in this blob the formats exist (in bytes) */ | 726 | /* Where in this blob the formats exist (in bytes) */ |
727 | u32 formats_offset; | 727 | __u32 formats_offset; |
728 | 728 | ||
729 | /* Number of drm_format_modifiers */ | 729 | /* Number of drm_format_modifiers */ |
730 | u32 count_modifiers; | 730 | __u32 count_modifiers; |
731 | 731 | ||
732 | /* Where in this blob the modifiers exist (in bytes) */ | 732 | /* Where in this blob the modifiers exist (in bytes) */ |
733 | u32 modifiers_offset; | 733 | __u32 modifiers_offset; |
734 | 734 | ||
735 | /* u32 formats[] */ | 735 | /* __u32 formats[] */ |
736 | /* struct drm_format_modifier modifiers[] */ | 736 | /* struct drm_format_modifier modifiers[] */ |
737 | }; | 737 | }; |
738 | 738 | ||