summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gp106/clk_gp106.c
diff options
context:
space:
mode:
authorAlex Waterman <alexw@nvidia.com>2016-10-28 21:03:55 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-01-11 15:44:15 -0500
commit78ad8a23ea896abde95f76b2ced0fe353cb4cb60 (patch)
treec52725895a49d1b8a1f71816eba90ada3316c23e /drivers/gpu/nvgpu/gp106/clk_gp106.c
parent865514be2dbd36b65c3ac128724036ea0ce63321 (diff)
gpu: nvgpu: Move gp106 HW headers
Move the gp106 HW headers to a new directory specially for them: include/nvgpu/hw/gp106 And change the code to include like so: #include <nvgpu/hw/gp106/hw_fb_gp106.h> This is part of the process to restructure the nvgpu driver. Bug 1799159 Change-Id: I76a4ff2e92021150ce65a8843bc12bb614a0e68a Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: http://git-master/r/1280327 GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gp106/clk_gp106.c')
-rw-r--r--drivers/gpu/nvgpu/gp106/clk_gp106.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/gp106/clk_gp106.c b/drivers/gpu/nvgpu/gp106/clk_gp106.c
index 4c9bc782..709527e3 100644
--- a/drivers/gpu/nvgpu/gp106/clk_gp106.c
+++ b/drivers/gpu/nvgpu/gp106/clk_gp106.c
@@ -25,10 +25,12 @@
25#include <linux/tegra-fuse.h> 25#include <linux/tegra-fuse.h>
26 26
27#include "gk20a/gk20a.h" 27#include "gk20a/gk20a.h"
28#include "hw_trim_gp106.h" 28
29#include "clk_gp106.h" 29#include "clk_gp106.h"
30#include "clk/clk_arb.h" 30#include "clk/clk_arb.h"
31 31
32#include <nvgpu/hw/gp106/hw_trim_gp106.h>
33
32#define gk20a_dbg_clk(fmt, arg...) \ 34#define gk20a_dbg_clk(fmt, arg...) \
33 gk20a_dbg(gpu_dbg_clk, fmt, ##arg) 35 gk20a_dbg(gpu_dbg_clk, fmt, ##arg)
34 36
@@ -270,4 +272,3 @@ void gp106_init_clk_ops(struct gpu_ops *gops) {
270 gops->clk.get_crystal_clk_hz = gp106_crystal_clk_hz; 272 gops->clk.get_crystal_clk_hz = gp106_crystal_clk_hz;
271 gops->clk.get_rate = gp106_clk_get_rate; 273 gops->clk.get_rate = gp106_clk_get_rate;
272} 274}
273