Skip to content

Commit 27f22f8

Browse files
Chen Nihdeller
authored andcommitted
fbdev: hyperv_fb: Convert comma to semicolon
Replace a comma between expression statements by a semicolon. Fixes: d786e00 ("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>
1 parent 18b0327 commit 27f22f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/video/fbdev/hyperv_fb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1189,7 +1189,7 @@ static int hvfb_probe(struct hv_device *hdev,
11891189
* which is almost at the end of list, with priority = INT_MIN + 1.
11901190
*/
11911191
par->hvfb_panic_nb.notifier_call = hvfb_on_panic;
1192-
par->hvfb_panic_nb.priority = INT_MIN + 10,
1192+
par->hvfb_panic_nb.priority = INT_MIN + 10;
11931193
atomic_notifier_chain_register(&panic_notifier_list,
11941194
&par->hvfb_panic_nb);
11951195

0 commit comments

Comments
 (0)