]> www.infradead.org Git - users/jedix/linux-maple.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)
committerHelge Deller <deller@gmx.de>
Mon, 2 Sep 2024 11:54:57 +0000 (13:54 +0200)
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>
drivers/video/fbdev/hyperv_fb.c

index 8fdccf033b2d9bf9a05e967fb166bbabe82bfe19..7fdb5edd7e2e8db11fe01f87e5ad8947f2762288 100644 (file)
@@ -1189,7 +1189,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);