summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Nieto <dmartineznie@nvidia.com>2016-10-17 16:39:56 -0400
committerDeepak Nibade <dnibade@nvidia.com>2016-12-27 04:56:50 -0500
commit7f7bf15564ad6a1198807e10bab156337f9dde9b (patch)
treeef4a95c11dfd217aef1e70ff8bf4b5c06a5114cb
parent905f1c0392bf244b321f56f82661eeb2fe00ee05 (diff)
gpu: nvgpu: fix sparse warning in LTC code
bug 200088648 sparse warning reported that the function was not defined. This was due to a missing include Change-Id: Ia6153a2f3348a86e78add95bcfff998505b47cdd Signed-off-by: David Nieto <dmartineznie@nvidia.com> Reviewed-on: http://git-master/r/1237845 Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
-rw-r--r--drivers/gpu/nvgpu/gp106/ltc_gp106.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gp106/ltc_gp106.c b/drivers/gpu/nvgpu/gp106/ltc_gp106.c
index dcd4fbad..b162ddb3 100644
--- a/drivers/gpu/nvgpu/gp106/ltc_gp106.c
+++ b/drivers/gpu/nvgpu/gp106/ltc_gp106.c
@@ -16,6 +16,7 @@
16#include "gk20a/gk20a.h" 16#include "gk20a/gk20a.h"
17#include "gm20b/ltc_gm20b.h" 17#include "gm20b/ltc_gm20b.h"
18#include "gp10b/ltc_gp10b.h" 18#include "gp10b/ltc_gp10b.h"
19#include "gp106/ltc_gp106.h"
19 20
20void gp106_init_ltc(struct gpu_ops *gops) 21void gp106_init_ltc(struct gpu_ops *gops)
21{ 22{