summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/include
diff options
context:
space:
mode:
authorDebarshi Dutta <ddutta@nvidia.com>2018-09-24 07:21:33 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2018-09-25 16:10:19 -0400
commit7e1dbd8303f40292cd406671a835764b16153e99 (patch)
treeb5f9fb9f1961fbfccbf2380b6fbf1b2ebce8bdf3 /drivers/gpu/nvgpu/include
parent810d9c57116065d163ee371cfec3e3f3319523f1 (diff)
gpu: nvgpu: move header location of gk20a.h
1) Update header path of gk20a.h files present in os/ to <nvgpu/gk20a.h> 2) os_fence_android_sema.c indirectly was dependent on gk20a.h via semaphore.h. So, added #include <nvgpu/gk20a.h> in os_fence_android_sema.c and replaced the header with forward declaration of struct gk20a in semaphore.h Jira NVGPU-597 Change-Id: I96e23befeb80713f3a399071eb5498f6f580211d Signed-off-by: Debarshi Dutta <ddutta@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1842868 Reviewed-by: svc-misra-checker <svc-misra-checker@nvidia.com> GVS: Gerrit_Virtual_Submit Reviewed-by: Konsta Holtta <kholtta@nvidia.com> Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Alex Waterman <alexw@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/include')
-rw-r--r--drivers/gpu/nvgpu/include/nvgpu/semaphore.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/include/nvgpu/semaphore.h b/drivers/gpu/nvgpu/include/nvgpu/semaphore.h
index 3239551f..94e3be0c 100644
--- a/drivers/gpu/nvgpu/include/nvgpu/semaphore.h
+++ b/drivers/gpu/nvgpu/include/nvgpu/semaphore.h
@@ -29,9 +29,10 @@
29#include <nvgpu/list.h> 29#include <nvgpu/list.h>
30#include <nvgpu/nvgpu_mem.h> 30#include <nvgpu/nvgpu_mem.h>
31 31
32#include "gk20a/gk20a.h"
33#include "gk20a/mm_gk20a.h" 32#include "gk20a/mm_gk20a.h"
34 33
34struct gk20a;
35
35#define gpu_sema_dbg(g, fmt, args...) \ 36#define gpu_sema_dbg(g, fmt, args...) \
36 nvgpu_log(g, gpu_dbg_sema, fmt, ##args) 37 nvgpu_log(g, gpu_dbg_sema, fmt, ##args)
37#define gpu_sema_verbose_dbg(g, fmt, args...) \ 38#define gpu_sema_verbose_dbg(g, fmt, args...) \