Browse Source

touch : raydium : fix reboot issue

use corresponding free api in shutdown and remove.

Change-Id: Id009c764e4007e8bd2e010f8f06e61653df88f21
Signed-off-by: Surya Teja Kudiri <[email protected]>
Surya Teja Kudiri 1 year ago
parent
commit
e6702160cf
1 changed files with 4 additions and 2 deletions
  1. 4 2
      raydium/raydium_driver.c

+ 4 - 2
raydium/raydium_driver.c

@@ -2553,7 +2553,8 @@ if (active_panel)
 	raydium_enable_regulator(g_raydium_ts, false);
 	raydium_get_regulator(g_raydium_ts, false);
 
-	kfree(g_raydium_ts);
+	devm_kfree(&client->dev, g_raydium_ts);
+	g_raydium_ts = NULL;
 
 	i2c_set_clientdata(client, NULL);
 	LOGD(LOG_INFO, "[touch] %s: done\n", __func__);
@@ -2601,7 +2602,8 @@ if (active_panel)
 	raydium_enable_regulator(g_raydium_ts, false);
 	raydium_get_regulator(g_raydium_ts, false);
 
-	kfree(g_raydium_ts);
+	devm_kfree(&client->dev, g_raydium_ts);
+	g_raydium_ts = NULL;
 
 	i2c_set_clientdata(client, NULL);
 	LOGD(LOG_INFO, "[touch] %s: done\n", __func__);