Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1d960003 authored by Marek Szyprowski's avatar Marek Szyprowski Committed by Dmitry Torokhov
Browse files

Input: stmfts - use async probe & suspend/resume to avoid 2s delay



Executing stmfts_power_on() function lasts over 2 seconds, what
significantly slows down the boot and resume processes if driver is
compiled in. Avoid this delay by forcing this driver to be probed
and suspended/resumed asynchronously.

Signed-off-by: default avatarMarek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 4621c966
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -730,6 +730,7 @@ static int stmfts_probe(struct i2c_client *client,
		return err;

	pm_runtime_enable(&client->dev);
	device_enable_async_suspend(&client->dev);

	return 0;
}
@@ -805,6 +806,7 @@ static struct i2c_driver stmfts_driver = {
		.name = STMFTS_DEV_NAME,
		.of_match_table = of_match_ptr(stmfts_of_match),
		.pm = &stmfts_pm_ops,
		.probe_type = PROBE_PREFER_ASYNCHRONOUS,
	},
	.probe = stmfts_probe,
	.remove = stmfts_remove,