diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-12 21:24:47 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-12 21:24:47 -0500 |
commit | f6d07dfcb15aad199d7351d3122eabd506968daf (patch) | |
tree | 7f76fb2b9c2d1966ed0bac068fead768eba3c56e /include | |
parent | 0e976064256523ca604bd82048ae0e3402ce2467 (diff) | |
parent | 5bad7d29a7bcffb2dbc28ea2728eeb3af13784f2 (diff) |
Merge branch 'drm-fixes' of git://people.freedesktop.org/~airlied/linux
Pull drm fixes from Dave Airlie:
"One urgent fix for an oops under console lock in some drivers, one
uapi fix, and one revert to fix rockchip regression"
* 'drm-fixes' of git://people.freedesktop.org/~airlied/linux:
Revert "drm/rockchip: Convert the probe function to the generic drm_of_component_probe()"
drm: Don't oops in drm_calc_timestamping_constants() if drm_vblank_init() wasn't called
drm: Use userspace compatible type in fourcc_mod_code macro
Diffstat (limited to 'include')
-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 8c5e8b91a3cb..0b69a7753558 100644 --- a/include/uapi/drm/drm_fourcc.h +++ b/include/uapi/drm/drm_fourcc.h | |||
@@ -158,7 +158,7 @@ | |||
158 | /* add more to the end as needed */ | 158 | /* add more to the end as needed */ |
159 | 159 | ||
160 | #define fourcc_mod_code(vendor, val) \ | 160 | #define fourcc_mod_code(vendor, val) \ |
161 | ((((u64)DRM_FORMAT_MOD_VENDOR_## vendor) << 56) | (val & 0x00ffffffffffffffULL)) | 161 | ((((__u64)DRM_FORMAT_MOD_VENDOR_## vendor) << 56) | (val & 0x00ffffffffffffffULL)) |
162 | 162 | ||
163 | /* | 163 | /* |
164 | * Format Modifier tokens: | 164 | * Format Modifier tokens: |