From: Chen Ni Date: Mon, 2 Sep 2024 07:44:02 +0000 (+0800) Subject: fbdev: hyperv_fb: Convert comma to semicolon X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=27f22f897095b09df32bf689b63624d23b0c8ebc;p=users%2Fjedix%2Flinux-maple.git fbdev: hyperv_fb: Convert comma to semicolon 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 Signed-off-by: Helge Deller --- diff --git a/drivers/video/fbdev/hyperv_fb.c b/drivers/video/fbdev/hyperv_fb.c index 8fdccf033b2d9..7fdb5edd7e2e8 100644 --- a/drivers/video/fbdev/hyperv_fb.c +++ b/drivers/video/fbdev/hyperv_fb.c @@ -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);