diff options
author | Thierry Reding <treding@nvidia.com> | 2017-11-01 15:20:04 +0100 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2017-12-13 13:42:01 +0100 |
commit | 5843f4e02fbe86a59981e35adc6cabebee46fdc0 (patch) | |
tree | 9c2f798a8c8400bd8e264ac00d1a3b7a1de99ef6 /include/uapi | |
parent | 9428088c90b6f7d5edd2a1b0d742c75339b36f6e (diff) | |
download | linux-stable-5843f4e02fbe86a59981e35adc6cabebee46fdc0.tar.gz linux-stable-5843f4e02fbe86a59981e35adc6cabebee46fdc0.tar.bz2 linux-stable-5843f4e02fbe86a59981e35adc6cabebee46fdc0.zip |
drm/fourcc: Fix fourcc_mod_code() definition
Avoid a compiler warnings when the val parameter is an expression.
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'include/uapi')
-rw-r--r-- | include/uapi/drm/drm_fourcc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/drm/drm_fourcc.h b/include/uapi/drm/drm_fourcc.h index 3ad838d3f93f..a76ed8f9e383 100644 --- a/include/uapi/drm/drm_fourcc.h +++ b/include/uapi/drm/drm_fourcc.h @@ -188,7 +188,7 @@ extern "C" { #define DRM_FORMAT_RESERVED ((1ULL << 56) - 1) #define fourcc_mod_code(vendor, val) \ - ((((__u64)DRM_FORMAT_MOD_VENDOR_## vendor) << 56) | (val & 0x00ffffffffffffffULL)) + ((((__u64)DRM_FORMAT_MOD_VENDOR_## vendor) << 56) | ((val) & 0x00ffffffffffffffULL)) /* * Format Modifier tokens: |