summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/os/linux/timers.c
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/os/linux/timers.c
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/os/linux/timers.c')
-rw-r--r--drivers/gpu/nvgpu/os/linux/timers.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/gpu/nvgpu/os/linux/timers.c b/drivers/gpu/nvgpu/os/linux/timers.c
index d1aa641f..018fd2d8 100644
--- a/drivers/gpu/nvgpu/os/linux/timers.c
+++ b/drivers/gpu/nvgpu/os/linux/timers.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved. 2 * Copyright (c) 2016-2018, NVIDIA CORPORATION. All rights reserved.
3 * 3 *
4 * This program is free software; you can redistribute it and/or modify it 4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License, 5 * under the terms and conditions of the GNU General Public License,
@@ -19,8 +19,7 @@
19 19
20#include <nvgpu/timers.h> 20#include <nvgpu/timers.h>
21#include <nvgpu/soc.h> 21#include <nvgpu/soc.h>
22 22#include <nvgpu/gk20a.h>
23#include "gk20a/gk20a.h"
24 23
25#include "platform_gk20a.h" 24#include "platform_gk20a.h"
26 25