]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: lowmemorykiller: fix 2 checks that checkpatch complained
authorSandeep Jain <sandeepjain.linux@gmail.com>
Mon, 29 Feb 2016 13:18:30 +0000 (18:48 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 12 Mar 2016 06:09:09 +0000 (22:09 -0800)
Specifically:
lowmemorykiller.c:53: CHECK: use a blank line after enum declarations
lowmemorykiller.c:60: CHECK: use a blank line after enum declarations

Signed-off-by: Sandeep Jain <sandeepjain.linux@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/android/lowmemorykiller.c

index 4b8a56cda6ca7684f6e01ebd64c83816510cc8e3..2509e5df7244a16d6b926d6e5d6a881f9f5bb792 100644 (file)
@@ -50,6 +50,7 @@ static short lowmem_adj[6] = {
        6,
        12,
 };
+
 static int lowmem_adj_size = 4;
 static int lowmem_minfree[6] = {
        3 * 512,        /* 6MB */
@@ -57,6 +58,7 @@ static int lowmem_minfree[6] = {
        4 * 1024,       /* 16MB */
        16 * 1024,      /* 64MB */
 };
+
 static int lowmem_minfree_size = 4;
 
 static unsigned long lowmem_deathpending_timeout;