From: Dmitry Torokhov Date: Sat, 24 Jul 2021 00:33:24 +0000 (-0700) Subject: Input: pm8941-pwrkey - fix comma vs semicolon issue X-Git-Tag: v5.15~74^2~8^2~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5af9f79b41b2ac58cc1d7c08945d7dbe26ee694a;p=platform%2Fkernel%2Flinux-starfive.git Input: pm8941-pwrkey - fix comma vs semicolon issue There is absolutely no reason to use comma operator in this code, 2 separate statements make much more sense. Reviewed-by: Stephen Boyd Link: https://lore.kernel.org/r/YPsa1qCBn/SAmE5x@google.com Signed-off-by: Dmitry Torokhov --- diff --git a/drivers/input/misc/pm8941-pwrkey.c b/drivers/input/misc/pm8941-pwrkey.c index 10e3fc0..3360960 100644 --- a/drivers/input/misc/pm8941-pwrkey.c +++ b/drivers/input/misc/pm8941-pwrkey.c @@ -284,7 +284,7 @@ static int pm8941_pwrkey_probe(struct platform_device *pdev) } if (pwrkey->data->supports_ps_hold_poff_config) { - pwrkey->reboot_notifier.notifier_call = pm8941_reboot_notify, + pwrkey->reboot_notifier.notifier_call = pm8941_reboot_notify; error = register_reboot_notifier(&pwrkey->reboot_notifier); if (error) { dev_err(&pdev->dev, "failed to register reboot notifier: %d\n",