From 6414fb04bfec5a444010b6687028db5cdc9e1add Mon Sep 17 00:00:00 2001 From: ppadasal Date: Wed, 21 Sep 2022 16:48:25 +0530 Subject: [PATCH] touchscreen: raydium: Lower log level Lower log level in work handler. Change-Id: Idcd1ce78ce979318542be5684fc286135af5d322 Signed-off-by: ppadasal --- raydium/raydium_driver.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/raydium/raydium_driver.c b/raydium/raydium_driver.c index 967b58601a..b21a790e38 100644 --- a/raydium/raydium_driver.c +++ b/raydium/raydium_driver.c @@ -1188,9 +1188,9 @@ static void raydium_work_handler(struct work_struct *work) #ifdef GESTURE_EN unsigned char u8_i; - LOGD(LOG_INFO, "[touch]ts->blank:%x, g_u8_i2c_mode:%x\n", + LOGD(LOG_DEBUG, "[touch]ts->blank:%x, g_u8_i2c_mode:%x\n", g_raydium_ts->blank, g_u8_i2c_mode); - LOGD(LOG_INFO, "[touch]u8_tp_status:%x, g_raydium_ts->is_palm:%x\n", + LOGD(LOG_DEBUG, "[touch]u8_tp_status:%x, g_raydium_ts->is_palm:%x\n", u8_tp_status[POS_GES_STATUS], g_raydium_ts->is_palm); if (g_u8_i2c_mode == PDA2_MODE) { @@ -1204,7 +1204,7 @@ static void raydium_work_handler(struct work_struct *work) if (g_raydium_ts->blank == DRM_PANEL_BLANK_LP || g_raydium_ts->blank == DRM_PANEL_BLANK_POWERDOWN || g_raydium_ts->fb_state == FB_OFF) { - LOGD(LOG_INFO, "[touch] elseif u8_tp_status:%x\n", u8_tp_status[POS_GES_STATUS]); + LOGD(LOG_DEBUG, "[touch] elseif u8_tp_status:%x\n", u8_tp_status[POS_GES_STATUS]); /*need check small area*/ /*if (u8_tp_status[POS_GES_STATUS] == RAD_WAKE_UP */ /*&& g_u8_wakeup_flag == false) { */ @@ -1215,7 +1215,7 @@ static void raydium_work_handler(struct work_struct *work) input_report_key(g_raydium_ts->input_dev, KEY_WAKEUP, false); input_sync(g_raydium_ts->input_dev); - LOGD(LOG_INFO, "[touch]display wake up with g_u8_resetflag true\n"); + LOGD(LOG_DEBUG, "[touch]display wake up with g_u8_resetflag true\n"); /*goto exit;*/ } }