summaryrefslogtreecommitdiffstats
path: root/kernel/sysctl.c
diff options
context:
space:
mode:
authorFanjun Kong <bh1scw@gmail.com>2022-05-22 13:29:33 +0800
committerLuis Chamberlain <mcgrof@kernel.org>2022-08-08 09:01:36 -0700
commit5bfd5d3e2ec883a3db3414a42d94d23961a790ed (patch)
tree2a656fb0aecd631d626577f895c535ab2692bbc0 /kernel/sysctl.c
parent7251ceb51af972603552fcea2db316ed2b9d95ba (diff)
downloadlinux-5bfd5d3e2ec883a3db3414a42d94d23961a790ed.tar.gz
linux-5bfd5d3e2ec883a3db3414a42d94d23961a790ed.tar.bz2
linux-5bfd5d3e2ec883a3db3414a42d94d23961a790ed.zip
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 <bh1scw@gmail.com> Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
Diffstat (limited to 'kernel/sysctl.c')
-rw-r--r--kernel/sysctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c
index 8a0e85a95138..223376959d29 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);
}
/**