Bladeren bron

touch: goodix: fix qts sequence in secure vm case

qts register is skipped when QTI_VM is defined. Fix the
sequence to allow qts register in secure vm cases.

Change-Id: Id9476de998d9598bab125795ad918a066ad7b15d
Signed-off-by: Raviteja Tamatam <[email protected]>
Raviteja Tamatam 2 jaren geleden
bovenliggende
commit
4ca379016d
1 gewijzigde bestanden met toevoegingen van 5 en 5 verwijderingen
  1. 5 5
      goodix_berlin_driver/goodix_ts_core.c

+ 5 - 5
goodix_berlin_driver/goodix_ts_core.c

@@ -1,7 +1,7 @@
  /*
   * Goodix Touchscreen Driver
   * Copyright (C) 2020 - 2021 Goodix, Inc.
-  * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
+  * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License as published by
@@ -2563,6 +2563,10 @@ static int goodix_ts_probe(struct platform_device *pdev)
 		goto err_out;
 	}
 
+#ifdef CONFIG_ARCH_QTI_VM
+skip_to_power_gpio_setup:
+#endif
+
 	qts_en = of_property_read_bool(node, "goodix,qts_en");
 	if (qts_en) {
 		mutex_init(&core_data->tui_transition_lock);
@@ -2576,10 +2580,6 @@ static int goodix_ts_probe(struct platform_device *pdev)
 		core_data->qts_en = qts_en;
 	}
 
-#ifdef CONFIG_ARCH_QTI_VM
-skip_to_power_gpio_setup:
-#endif
-
 	/* generic notifier callback */
 	core_data->ts_notifier.notifier_call = goodix_generic_noti_callback;
 	goodix_ts_register_notifier(&core_data->ts_notifier);