31 lines
1.0 KiB
Diff
31 lines
1.0 KiB
Diff
|
From 65d5d30ccebd555de9ad8fd2b5dfc50291922337 Mon Sep 17 00:00:00 2001
|
||
|
From: Thierry Reding <treding@nvidia.com>
|
||
|
Date: Wed, 23 Aug 2017 19:13:26 +0200
|
||
|
Subject: drm/tegra: trace: Fix path to include
|
||
|
|
||
|
The TRACE_INCLUDE_PATH macro needs to specify the path relative to the
|
||
|
define_trace.h header rather than relative to the file defining it.
|
||
|
|
||
|
Reported-by: Dmitry Osipenko <digetx@gmail.com>
|
||
|
Tested-by: Dmitry Osipenko <digetx@gmail.com>
|
||
|
Signed-off-by: Thierry Reding <treding@nvidia.com>
|
||
|
---
|
||
|
drivers/gpu/drm/tegra/trace.h | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/drivers/gpu/drm/tegra/trace.h b/drivers/gpu/drm/tegra/trace.h
|
||
|
index e9b7cdad..5a1ab40 100644
|
||
|
--- a/drivers/gpu/drm/tegra/trace.h
|
||
|
+++ b/drivers/gpu/drm/tegra/trace.h
|
||
|
@@ -63,6 +63,6 @@ DEFINE_EVENT(register_access, sor_readl,
|
||
|
|
||
|
/* This part must be outside protection */
|
||
|
#undef TRACE_INCLUDE_PATH
|
||
|
-#define TRACE_INCLUDE_PATH .
|
||
|
+#define TRACE_INCLUDE_PATH ../../drivers/gpu/drm/tegra
|
||
|
#define TRACE_INCLUDE_FILE trace
|
||
|
#include <trace/define_trace.h>
|
||
|
--
|
||
|
cgit v1.1
|
||
|
|