Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Input: stmfts - correct wording for the warning message

We're trying to enable regulator, not disable it.

Fixes: 78bcac7b2ae1 ("Input: add support for the STMicroelectronics FingerTip touchscreen")
Suggested-by: Petr Hodina <petr.hodina@protonmail.com>
Signed-off-by: David Heidelberg <david@ixit.cz>
Link: https://patch.msgid.link/20251215-fts-fixes-v1-1-8c1e3a63ebf1@ixit.cz
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

authored by

David Heidelberg and committed by
Dmitry Torokhov
385a5386 686c6455

+1 -1
+1 -1
drivers/input/touchscreen/stmfts.c
··· 120 120 err = regulator_enable(sdata->ledvdd); 121 121 if (err) { 122 122 dev_warn(&sdata->client->dev, 123 - "failed to disable ledvdd regulator: %d\n", 123 + "failed to enable ledvdd regulator: %d\n", 124 124 err); 125 125 return err; 126 126 }