From: Fanjun Kong Date: Sun, 22 May 2022 05:29:33 +0000 (+0800) Subject: kernel/sysctl.c: Clean up indentation, replace spaces with tab. X-Git-Tag: v6.0-rc1~61^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5bfd5d3e2ec883a3db3414a42d94d23961a790ed;p=thirdparty%2Flinux.git kernel/sysctl.c: Clean up indentation, replace spaces with tab. This patch fixes two coding style issues: 1. Clean up indentation, replace spaces with tab 2. Add space after ',' Signed-off-by: Fanjun Kong Signed-off-by: Luis Chamberlain --- diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 8a0e85a95138e..223376959d29e 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -1315,8 +1315,8 @@ int proc_dointvec_ms_jiffies_minmax(struct ctl_table *table, int write, int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos) { - return do_proc_dointvec(table,write,buffer,lenp,ppos, - do_proc_dointvec_userhz_jiffies_conv,NULL); + return do_proc_dointvec(table, write, buffer, lenp, ppos, + do_proc_dointvec_userhz_jiffies_conv, NULL); } /**