summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gp10b/fb_gp10b.c
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2016-11-09 18:54:27 -0500
committerDeepak Nibade <dnibade@nvidia.com>2016-12-27 04:56:51 -0500
commitd8da1d64381bb1265e194d81cb02673efa6ca54c (patch)
treefb69a0716c36659fc48be6ed0ce9ccc7c3bf96f3 /drivers/gpu/nvgpu/gp10b/fb_gp10b.c
parent6579c1ec6fbe9d8bbd0c5da5dfaa51c02402527b (diff)
gpu: nvgpu: Fix signed comparison bugs
Fix small problems related to signed versus unsigned comparisons throughout the driver. Bump up the warning level to prevent such problems from occuring in future. Change-Id: Ib7026728ef0e8c3c9e68956fc9794ec3a786a8a2 Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: http://git-master/r/1252069 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gp10b/fb_gp10b.c')
-rw-r--r--drivers/gpu/nvgpu/gp10b/fb_gp10b.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/gp10b/fb_gp10b.c b/drivers/gpu/nvgpu/gp10b/fb_gp10b.c
index 9c0bc992..5324b5ef 100644
--- a/drivers/gpu/nvgpu/gp10b/fb_gp10b.c
+++ b/drivers/gpu/nvgpu/gp10b/fb_gp10b.c
@@ -87,12 +87,12 @@ static void gp10b_init_kind_attr(void)
87 } 87 }
88} 88}
89 89
90static int gp10b_fb_compression_page_size(struct gk20a *g) 90static unsigned int gp10b_fb_compression_page_size(struct gk20a *g)
91{ 91{
92 return SZ_64K; 92 return SZ_64K;
93} 93}
94 94
95static int gp10b_fb_compressible_page_size(struct gk20a *g) 95static unsigned int gp10b_fb_compressible_page_size(struct gk20a *g)
96{ 96{
97 return SZ_4K; 97 return SZ_4K;
98} 98}