Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm: fix inclusion of drm.h in tegra_drm.h

Using `#include "drm.h"` instead of `#include <drm/drm.h>` allow drm
headers to be moved in another directory without changes, like for the
libdrm imports.

Signed-off-by: Gabriel Laskar <gabriel@lse.epita.fr>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
CC: Emil Velikov <emil.l.velikov@gmail.com>
CC: Mikko Rapeli <mikko.rapeli@iki.fi>

+1 -1
+1 -1
include/uapi/drm/tegra_drm.h
··· 23 23 #ifndef _UAPI_TEGRA_DRM_H_ 24 24 #define _UAPI_TEGRA_DRM_H_ 25 25 26 - #include <drm/drm.h> 26 + #include "drm.h" 27 27 28 28 #define DRM_TEGRA_GEM_CREATE_TILED (1 << 0) 29 29 #define DRM_TEGRA_GEM_CREATE_BOTTOM_UP (1 << 1)