Forráskód Böngészése

touch: Fix L29 is ON in TWM

Add the regulator_set_load() in pt_release().
Keep both regulators by using regulator_set_load API's
should be turn off in release sequence.

Change-Id: Ie041e7f8e666d1dae1d7a4e958e92ae8dcc32699
Signed-off-by: Srikanth Katteboina <[email protected]>
Signed-off-by: Surya Teja Kudiri <[email protected]>
Srikanth Katteboina 2 éve
szülő
commit
acf59ba335
1 módosított fájl, 5 hozzáadás és 0 törlés
  1. 5 0
      pt/pt_core.c

+ 5 - 0
pt/pt_core.c

@@ -17988,6 +17988,11 @@ int pt_release(struct pt_core_data *cd)
 		cd->cpdata->setup_power(cd->cpdata, PT_MT_POWER_OFF, dev);
 	dev_set_drvdata(dev, NULL);
 	pt_del_core(dev);
+	if (cd->vcc_i2c)
+		regulator_set_load(cd->vcc_i2c, 0);
+
+	if (cd->vdd)
+		regulator_set_load(cd->vdd, 0);
 	pt_enable_regulator(cd, false);
 	pt_get_regulator(cd, false);
 	pt_free_si_ptrs(cd);