diff options
author | Philip Elcan <pelcan@nvidia.com> | 2018-09-18 10:14:05 -0400 |
---|---|---|
committer | mobile promotions <svcmobile_promotions@nvidia.com> | 2018-09-26 19:44:59 -0400 |
commit | 07e5bd817a23913d120b945ced5c96951716886c (patch) | |
tree | e8654264bba5a5f5a318c587758b7a476b83c0f2 /drivers/gpu/nvgpu/include | |
parent | 1a3d75790db3effe6f461ca4923cac7e7d2202c4 (diff) |
gpu: nvgpu: fix return type of *get_litter_value()
All callers for the *get_litter_value() functions were expecting u32,
but the functions were declared to return int's. This is a violation of
MISRA 10.3 which prohibits implicit assignment between essential types
(signed int and unsigned long int, in this case). The litter values
are all u32's anyway.
JIRA NVGPU-647
Change-Id: I853d2abee372488e5d12e355050cbeaf1e53a42c
Signed-off-by: Philip Elcan <pelcan@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/1830581
Reviewed-by: svc-misra-checker <svc-misra-checker@nvidia.com>
Reviewed-by: Automatic_Commit_Validation_User
GVS: Gerrit_Virtual_Submit
Reviewed-by: Scott Long <scottl@nvidia.com>
Reviewed-by: Alex Waterman <alexw@nvidia.com>
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/include')
-rw-r--r-- | drivers/gpu/nvgpu/include/nvgpu/gk20a.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/include/nvgpu/gk20a.h b/drivers/gpu/nvgpu/include/nvgpu/gk20a.h index a7fe1c2f..2ebe0011 100644 --- a/drivers/gpu/nvgpu/include/nvgpu/gk20a.h +++ b/drivers/gpu/nvgpu/include/nvgpu/gk20a.h | |||
@@ -1194,7 +1194,7 @@ struct gpu_ops { | |||
1194 | int (*perfbuffer_disable)(struct gk20a *g); | 1194 | int (*perfbuffer_disable)(struct gk20a *g); |
1195 | } dbg_session_ops; | 1195 | } dbg_session_ops; |
1196 | 1196 | ||
1197 | int (*get_litter_value)(struct gk20a *g, int value); | 1197 | u32 (*get_litter_value)(struct gk20a *g, int value); |
1198 | int (*chip_init_gpu_characteristics)(struct gk20a *g); | 1198 | int (*chip_init_gpu_characteristics)(struct gk20a *g); |
1199 | 1199 | ||
1200 | struct { | 1200 | struct { |