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

Commit 135d916f authored by Jaewon Kim's avatar Jaewon Kim Committed by Dmitry Torokhov
Browse files

Input: max77693-haptic - fix state check in imax77693_haptic_disable()



The check to see whether the device is already disabled in
max77693_haptic_disable() was inversed, this change corrects it.

Signed-off-by: default avatarJaewon Kim <jaewon02.kim@samsung.com>
Reviewed-by: default avatarChanwoo Choi <cw00.choi@samsung.com>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 4d544e3b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -152,7 +152,7 @@ static void max77693_haptic_disable(struct max77693_haptic *haptic)
{
	int error;

	if (haptic->enabled)
	if (!haptic->enabled)
		return;

	error = max77693_haptic_configure(haptic, false);