Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 <nichen@iscas.ac.cn>
Signed-off-by: Helge Deller <deller@gmx.de>

authored by

Chen Ni and committed by
Helge Deller
27f22f89 18b03273

+1 -1
+1 -1
drivers/video/fbdev/hyperv_fb.c
··· 1189 1189 * which is almost at the end of list, with priority = INT_MIN + 1. 1190 1190 */ 1191 1191 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; 1193 1193 atomic_notifier_chain_register(&panic_notifier_list, 1194 1194 &par->hvfb_panic_nb); 1195 1195