From 1fd9df8a02815ae428b1933b92993843a43c28db Mon Sep 17 00:00:00 2001 From: Carter Cooper Date: Wed, 18 Sep 2013 16:25:30 -0600 Subject: [PATCH] msm: kgsl: Don't halt the GPU, try to recover first We don't want to halt the GPU when trying to recover in production devices. Remove the bit mask that would do that. Signed-off-by: Carter Cooper --- drivers/gpu/msm/adreno.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/gpu/msm/adreno.h b/drivers/gpu/msm/adreno.h index e7bd706ff4c0..8e98bc8c0796 100644 --- a/drivers/gpu/msm/adreno.h +++ b/drivers/gpu/msm/adreno.h @@ -402,8 +402,7 @@ struct log_field { #define KGSL_FT_PAGEFAULT_GPUHALT_ENABLE BIT(1) #define KGSL_FT_PAGEFAULT_LOG_ONE_PER_PAGE BIT(2) #define KGSL_FT_PAGEFAULT_LOG_ONE_PER_INT BIT(3) -#define KGSL_FT_PAGEFAULT_DEFAULT_POLICY (KGSL_FT_PAGEFAULT_INT_ENABLE + \ - KGSL_FT_PAGEFAULT_GPUHALT_ENABLE) +#define KGSL_FT_PAGEFAULT_DEFAULT_POLICY KGSL_FT_PAGEFAULT_INT_ENABLE #define ADRENO_FT_TYPES \ { BIT(KGSL_FT_OFF), "off" }, \