Skip to content

Commit a05f096

Browse files
andy-shevkees
authored andcommitted
params: Sort headers
Sort the headers in alphabetic order in order to ease the maintenance for this part. Reviewed-by: Luis Chamberlain <mcgrof@kernel.org> Reviewed-by: Kees Cook <keescook@chromium.org> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/20231120151419.1661807-5-andriy.shevchenko@linux.intel.com Signed-off-by: Kees Cook <keescook@chromium.org>
1 parent 0fc79cb commit a05f096

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

kernel/params.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
Copyright (C) 2001 Rusty Russell.
44
55
*/
6+
#include <linux/ctype.h>
7+
#include <linux/device.h>
8+
#include <linux/err.h>
9+
#include <linux/errno.h>
610
#include <linux/kernel.h>
711
#include <linux/kstrtox.h>
8-
#include <linux/string.h>
9-
#include <linux/errno.h>
1012
#include <linux/module.h>
1113
#include <linux/moduleparam.h>
12-
#include <linux/device.h>
13-
#include <linux/err.h>
1414
#include <linux/overflow.h>
15-
#include <linux/slab.h>
16-
#include <linux/ctype.h>
1715
#include <linux/security.h>
16+
#include <linux/slab.h>
17+
#include <linux/string.h>
1818

1919
#ifdef CONFIG_SYSFS
2020
/* Protects all built-in parameters, modules use their own param_lock */

0 commit comments

Comments
 (0)