search for: cbf0aceff85

Displaying 2 results from an estimated 2 matches for "cbf0aceff85".

2016 Apr 21
0
[PATCH 05/24] drm/exynos: add extern C guard for the UAPI header
Cc: Andrzej Hajda <a.hajda at samsung.com> Cc: Inki Dae <inki.dae at samsung.com> Signed-off-by: Emil Velikov <emil.l.velikov at gmail.com> --- Inki, Can we please have someone from the Exynos/Samsung look into the following: - A follow up on patch cbf0aceff85 "drm/exynos: use arch independent types in uapi header" - Use the same licence for both libdrm and kernel version of exynos_drm.h - ideally X11/MIT. No rush, just making sure that it doesn't fall through the cracks. Thanks Emil --- include/uapi/drm/exynos_drm.h | 8 ++++++++ 1 fil...
2016 Apr 21
25
[PATCH 00/24] drm: add extern C guard for the UAPI headers
Hi all, As some of you may know there some subtle distinction between C and C++ structs, thus one should wrap/annotate them roughly like below. ... #if defined(__cplusplus) extern "C" { #endif struct foo { int bar; ... }; ... #if defined(__cplusplus) } #endif In order to work around the lack of these users can wrap the header inclusion in the same way. For example: