]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
fbdev: hyperv_fb: Convert comma to semicolon
authorChen Ni <nichen@iscas.ac.cn>
Mon, 2 Sep 2024 07:44:02 +0000 (15:44 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 6 Jul 2025 08:58:03 +0000 (10:58 +0200)
commit 27f22f897095b09df32bf689b63624d23b0c8ebc upstream.

Replace a comma between expression statements by a semicolon.

Fixes: d786e00d19f9 ("drivers: hv, hyperv_fb: Untangle and refactor Hyper-V panic notifiers")
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/video/fbdev/hyperv_fb.c

index f3f30ee6cc95ad4976db07c2b3a3b7f2c674279e..dfb449f3e4a46a96ca635f5003640b0a2a2e7568 100644 (file)
@@ -1217,7 +1217,7 @@ static int hvfb_probe(struct hv_device *hdev,
         * which is almost at the end of list, with priority = INT_MIN + 1.
         */
        par->hvfb_panic_nb.notifier_call = hvfb_on_panic;
-       par->hvfb_panic_nb.priority = INT_MIN + 10,
+       par->hvfb_panic_nb.priority = INT_MIN + 10;
        atomic_notifier_chain_register(&panic_notifier_list,
                                       &par->hvfb_panic_nb);