drm/mga: add extern C guard for the UAPI header

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
This commit is contained in:
Emil Velikov 2016-04-07 19:01:39 +01:00
Родитель b1c1f5c400
Коммит c56e046f17
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -37,6 +37,10 @@
#include "drm.h"
#if defined(__cplusplus)
extern "C" {
#endif
/* WARNING: If you change any of these defines, make sure to change the
* defines in the Xserver file (mga_sarea.h)
*/
@ -416,4 +420,8 @@ typedef struct drm_mga_getparam {
void __user *value;
} drm_mga_getparam_t;
#if defined(__cplusplus)
}
#endif
#endif