summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a
diff options
context:
space:
mode:
authorAlex Waterman <alexw@nvidia.com>2018-04-09 20:39:11 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2018-05-07 07:41:22 -0400
commite6b3bb4e6b3d4013f83ba6d31c780947f16cf410 (patch)
treea6620cd552fc05e8d31de3e076f1f7656821ed25 /drivers/gpu/nvgpu/gk20a
parentb0cf5804147efbf50ad80d900248e2eeefb4eb2c (diff)
gpu: nvgpu: Fixups for tmake build
Mostly just including necessary includes to make sure that global function declarations actually match their implementations. Also work around pointer munging warning: /build/ddpx/linux/kernel/nvgpu/drivers/gpu/nvgpu/common/pmu/pmu.c: In function 'nvgpu_pmu_process_init_msg': /build/ddpx/linux/kernel/nvgpu/drivers/gpu/nvgpu/common/pmu/pmu.c:348:4: error: dereferencing type-punned pointer will break strict-aliasing rules [-Werror=strict-aliasing] (*(u32 *)gid_data.signature == PMU_SHA1_GID_SIGNATURE); Work around this warning by simply moving the type punning. This code is certainly dangerous - it assumes the endianness of the header data is the same as the machine this code is running on. Apparently it works, though, so this ignores the warning. JIRA NVGPU-525 Change-Id: Id704bae7805440bebfad51c8c8365e6d2b7a39eb Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1692454 Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com> GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a')
-rw-r--r--drivers/gpu/nvgpu/gk20a/gr_gk20a.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/gr_gk20a.h b/drivers/gpu/nvgpu/gk20a/gr_gk20a.h
index be149b73..a703ef9d 100644
--- a/drivers/gpu/nvgpu/gk20a/gr_gk20a.h
+++ b/drivers/gpu/nvgpu/gk20a/gr_gk20a.h
@@ -563,8 +563,6 @@ void gk20a_gr_wait_initialized(struct gk20a *g);
563 563
564int gk20a_init_gr_channel(struct channel_gk20a *ch_gk20a); 564int gk20a_init_gr_channel(struct channel_gk20a *ch_gk20a);
565 565
566int gr_gk20a_init_ctx_vars(struct gk20a *g, struct gr_gk20a *gr);
567
568int gk20a_alloc_obj_ctx(struct channel_gk20a *c, u32 class_num, u32 flags); 566int gk20a_alloc_obj_ctx(struct channel_gk20a *c, u32 class_num, u32 flags);
569 567
570int gk20a_gr_isr(struct gk20a *g); 568int gk20a_gr_isr(struct gk20a *g);