gpu: nvgpu: common: fix MISRA Rule 10.4 Violations

MISRA Rule 10.4 only allows the usage of arithmetic operations on
operands of the same essential type category.

Adding "U" at the end of the integer literals or casting operands
to have same type of operands when an arithmetic operation is
performed.

This fixes violations where an arithmetic operation is performed on
signed and unsigned int types.

JIRA NVGPU-992

Change-Id: I27e3e59c3559c377b4bd3cbcfced90fdf90350f2
Signed-off-by: Sai Nikhil <snikhil@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/1921459
Reviewed-by: svc-misra-checker <svc-misra-checker@nvidia.com>
GVS: Gerrit_Virtual_Submit
Reviewed-by: Adeel Raza <araza@nvidia.com>
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
Sai Nikhil
2018-10-08 15:30:37 +05:30
committed by mobile promotions
parent 2bded93b28
commit 303fc7496c
42 changed files with 149 additions and 149 deletions

View File

@@ -83,7 +83,7 @@ int gk20a_prepare_poweroff(struct gk20a *g)
if (g->ops.fifo.channel_suspend != NULL) {
ret = g->ops.fifo.channel_suspend(g);
if (ret != 0) {
if (ret != 0U) {
return ret;
}
}