From 50a7679bbfc760f047aae60ca41f272bd0cd165c Mon Sep 17 00:00:00 2001 From: Hyotaek Shim Date: Wed, 26 Feb 2020 19:39:06 +0900 Subject: [PATCH] Set feedback replay delay as zero for standard driver Change-Id: Id067d152f4ab2ae0540c60d4408fc59ef4555280 Signed-off-by: Hyotaek Shim (cherry picked from commit 27ce4f3718747f1d6ae4a161d63d150c29562582) --- src/haptic/standard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/haptic/standard.c b/src/haptic/standard.c index 51d7f2a..07779f7 100644 --- a/src/haptic/standard.c +++ b/src/haptic/standard.c @@ -216,7 +216,7 @@ static int ff_init_effect(struct ff_effect *effect) /*Only rumble supported as of now*/ effect->type = FF_RUMBLE; effect->replay.length = 0; - effect->replay.delay = 10; + effect->replay.delay = 0; effect->id = -1; effect->u.rumble.strong_magnitude = 0; -- 2.7.4