summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gp10b/pmu_gp10b.c
diff options
context:
space:
mode:
authorAlex Waterman <alexw@nvidia.com>2016-10-28 20:41:27 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-01-11 15:44:14 -0500
commit865514be2dbd36b65c3ac128724036ea0ce63321 (patch)
tree9a2fccc3b71a8945923b0ed4910c4fec45fa4fec /drivers/gpu/nvgpu/gp10b/pmu_gp10b.c
parent6dd57c29b064774e065b001266aef9dd37bc7feb (diff)
gpu: nvgpu: Move gp10b HW headers
Move the gp10b HW headers to a new directory specially for them: include/nvgpu/hw/gp10b And change the code to include like so: #include <nvgpu/hw/gp10b/hw_fb_gp10b.h> This is part of the process to restructure the nvgpu driver. Bug 1799159 Change-Id: Ic80ea5b7f5c280839e502e2178a345181f7a7ef9 Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: http://git-master/r/1280326 GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gp10b/pmu_gp10b.c')
-rw-r--r--drivers/gpu/nvgpu/gp10b/pmu_gp10b.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/gp10b/pmu_gp10b.c b/drivers/gpu/nvgpu/gp10b/pmu_gp10b.c
index cf702ac6..fc535985 100644
--- a/drivers/gpu/nvgpu/gp10b/pmu_gp10b.c
+++ b/drivers/gpu/nvgpu/gp10b/pmu_gp10b.c
@@ -15,16 +15,18 @@
15 15
16#include <linux/delay.h> /* for udelay */ 16#include <linux/delay.h> /* for udelay */
17#include <linux/tegra-fuse.h> 17#include <linux/tegra-fuse.h>
18
18#include "gk20a/gk20a.h" 19#include "gk20a/gk20a.h"
19#include "gk20a/pmu_gk20a.h" 20#include "gk20a/pmu_gk20a.h"
20#include "gm20b/acr_gm20b.h" 21#include "gm20b/acr_gm20b.h"
21#include "gm20b/pmu_gm20b.h" 22#include "gm20b/pmu_gm20b.h"
22 23
23#include "pmu_gp10b.h" 24#include "pmu_gp10b.h"
24#include "hw_pwr_gp10b.h"
25#include "hw_fuse_gp10b.h"
26#include "gp10b_sysfs.h" 25#include "gp10b_sysfs.h"
27 26
27#include <nvgpu/hw/gp10b/hw_pwr_gp10b.h>
28#include <nvgpu/hw/gp10b/hw_fuse_gp10b.h>
29
28#define gp10b_dbg_pmu(fmt, arg...) \ 30#define gp10b_dbg_pmu(fmt, arg...) \
29 gk20a_dbg(gpu_dbg_pmu, fmt, ##arg) 31 gk20a_dbg(gpu_dbg_pmu, fmt, ##arg)
30/*! 32/*!