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 <[email protected]> Reviewed-by: Kees Cook <[email protected]> Signed-off-by: Andy Shevchenko <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Kees Cook <[email protected]>
1 parent 0fc79cb commit a05f096

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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)