|
@@ -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);
|