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

hangcheck-timer: fix coding style spacing

Fix minor styling issues for proper compliance to the kernel coding
style.

Signed-off-by: Clint George <clintbgeorge@gmail.com>
Link: https://patch.msgid.link/20251111151340.9162-4-clintbgeorge@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Clint George and committed by
Greg Kroah-Hartman
cbe1d77e e03a2f7d

+9 -5
+9 -5
drivers/char/hangcheck-timer.c
··· 69 69 static int __init hangcheck_parse_tick(char *str) 70 70 { 71 71 int par; 72 - if (get_option(&str,&par)) 72 + 73 + if (get_option(&str, &par)) 73 74 hangcheck_tick = par; 74 75 return 1; 75 76 } ··· 78 77 static int __init hangcheck_parse_margin(char *str) 79 78 { 80 79 int par; 81 - if (get_option(&str,&par)) 80 + 81 + if (get_option(&str, &par)) 82 82 hangcheck_margin = par; 83 83 return 1; 84 84 } ··· 87 85 static int __init hangcheck_parse_reboot(char *str) 88 86 { 89 87 int par; 90 - if (get_option(&str,&par)) 88 + 89 + if (get_option(&str, &par)) 91 90 hangcheck_reboot = par; 92 91 return 1; 93 92 } ··· 96 93 static int __init hangcheck_parse_dump_tasks(char *str) 97 94 { 98 95 int par; 99 - if (get_option(&str,&par)) 96 + 97 + if (get_option(&str, &par)) 100 98 hangcheck_dump_tasks = par; 101 99 return 1; 102 100 } ··· 172 168 static void __exit hangcheck_exit(void) 173 169 { 174 170 timer_delete_sync(&hangcheck_ticktock); 175 - pr_debug("Hangcheck: Stopped hangcheck timer.\n"); 171 + pr_debug("Hangcheck: Stopped hangcheck timer.\n"); 176 172 } 177 173 178 174 module_init(hangcheck_init);