diff options
author | Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | 2023-01-27 08:57:27 -0500 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2023-02-13 09:09:44 -0700 |
commit | f80f09b59fdd45753dd80ac623981ad00ece4c2d (patch) | |
tree | 06784a85c49accf2f7ddac78258810b189baaa49 /tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c | |
parent | 145df2fdc38f24b3e52e4c2a59b02d874a074fbd (diff) | |
download | lwn-f80f09b59fdd45753dd80ac623981ad00ece4c2d.tar.gz lwn-f80f09b59fdd45753dd80ac623981ad00ece4c2d.zip |
selftests: dmabuf-heaps: Fix incorrect kernel headers search path
Use $(KHDR_INCLUDES) as lookup path for kernel headers. This prevents
building against kernel headers from the build environment in scenarios
where kernel headers are installed into a specific output directory
(O=...).
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Shuah Khan <shuah@kernel.org>
Cc: linux-kselftest@vger.kernel.org
Cc: Ingo Molnar <mingo@redhat.com>
Cc: <stable@vger.kernel.org> # 5.18+
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c')
-rw-r--r-- | tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c b/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c index 29af27acd40e..890a8236a8ba 100644 --- a/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c +++ b/tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c @@ -13,10 +13,9 @@ #include <sys/types.h> #include <linux/dma-buf.h> +#include <linux/dma-heap.h> #include <drm/drm.h> -#include "../../../../include/uapi/linux/dma-heap.h" - #define DEVPATH "/dev/dma_heap" static int check_vgem(int fd) |