summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYu Wu <quic_zwy@quicinc.com>2022-11-14 17:00:16 +0800
committerGerrit - the friendly Code Review server <code-review@localhost>2022-11-15 21:34:39 -0800
commit6b6fdc17bf680ecdcb3a89f0d07dab304fa97c99 (patch)
tree426aec9cf6c65b2aa076489bace609f9914cbcd0
parentdd836445787dda334440a3a8978b40847f22e8bd (diff)
downloadtouch-6b6fdc17bf680ecdcb3a89f0d07dab304fa97c99.tar.gz
touch: fix compilation errors in touch drivers
Remove the %s in pr_warn function which is not needed. Change-Id: Idf8346b250a51763bdb270cfa36bda416650d91e Signed-off-by: Yu Wu <quic_zwy@quicinc.com>
-rw-r--r--qts/qts_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/qts/qts_core.c b/qts/qts_core.c
index b49e9be..b98c104 100644
--- a/qts/qts_core.c
+++ b/qts/qts_core.c
@@ -177,7 +177,7 @@ static int qts_populate_vm_info(struct qts_data *qts_data)
rc = of_property_read_string(np, "qts,trusted-touch-type",
&vm_info->trusted_touch_type);
if (rc) {
- pr_warn("%s: No trusted touch type selection made\n");
+ pr_warn("No trusted touch type selection mode\n");
vm_info->mem_tag = GH_MEM_NOTIFIER_TAG_TOUCH_PRIMARY;
vm_info->irq_label = GH_IRQ_LABEL_TRUSTED_TOUCH_PRIMARY;
rc = 0;