From b3dbc3161e91948b90a42779f28791aa2ed5f3da Mon Sep 17 00:00:00 2001 From: Vijayakumar Date: Fri, 11 Nov 2016 01:48:57 +0530 Subject: gpu: nvgpu: correct adc slope ofset sign bit bug 1838549 Change-Id: I40457aebd49a02d0dd54d6dc9c965f89613ee21f Signed-off-by: Vijayakumar Reviewed-on: http://git-master/r/1251371 (cherry picked from commit 2c80f36830baf48bab043d7f1ebbcbe7759789c4) Reviewed-on: http://git-master/r/1251452 Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom Tested-by: Terje Bergstrom --- drivers/gpu/nvgpu/gp106/hw_fuse_gp106.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/nvgpu/gp106/hw_fuse_gp106.h b/drivers/gpu/nvgpu/gp106/hw_fuse_gp106.h index afabc943..32d8a4f2 100644 --- a/drivers/gpu/nvgpu/gp106/hw_fuse_gp106.h +++ b/drivers/gpu/nvgpu/gp106/hw_fuse_gp106.h @@ -164,7 +164,7 @@ static inline u32 fuse_vin_cal_gpc1_icpt_sign_f(void) } static inline u32 fuse_vin_cal_gpc1_slope_sign_f(void) { - return 0x8000; + return 0x800; } static inline u32 fuse_vin_cal_gpc1_icpt_data_v(u32 r) { -- cgit v1.2.2