On 17.07.2015 05:19, akulichalexander@gmail.com wrote:
From: Alexandr Akulich akulichalexander@gmail.com
The include type changed from system to own.
Signed-off-by: Alexandr Akulich akulichalexander@gmail.com
include/drm/amdgpu_drm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/drm/amdgpu_drm.h b/include/drm/amdgpu_drm.h index b6fce90..25e9b0a 100644 --- a/include/drm/amdgpu_drm.h +++ b/include/drm/amdgpu_drm.h @@ -32,7 +32,7 @@ #ifndef __AMDGPU_DRM_H__ #define __AMDGPU_DRM_H__
-#include <drm/drm.h> +#include "drm.h"
#define DRM_AMDGPU_GEM_CREATE 0x00 #define DRM_AMDGPU_GEM_MMAP 0x01
It should be
#include <drm.h>
<drm/drm.h> is wrong because that's the path of the kernel header, which not every distro ships.
"drm.h" is wrong because amdgpu_drm.h is used by other projects.