aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSandeep Jain <sandeepjain.linux@gmail.com>2016-02-29 08:18:30 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-03-12 01:09:09 -0500
commitb33061fbcdb959a5cee024b052b6a64d7ccd0654 (patch)
treefecbf12fa651537d894d7758832d025bc9a400f1
parent9842729cfcdc4836ecc786ee5b943950b872868d (diff)
staging: lowmemorykiller: fix 2 checks that checkpatch complained
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>
-rw-r--r--drivers/staging/android/lowmemorykiller.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/staging/android/lowmemorykiller.c b/drivers/staging/android/lowmemorykiller.c
index 4b8a56cda6ca..2509e5df7244 100644
--- a/drivers/staging/android/lowmemorykiller.c
+++ b/drivers/staging/android/lowmemorykiller.c
@@ -50,6 +50,7 @@ static short lowmem_adj[6] = {
50 6, 50 6,
51 12, 51 12,
52}; 52};
53
53static int lowmem_adj_size = 4; 54static int lowmem_adj_size = 4;
54static int lowmem_minfree[6] = { 55static int lowmem_minfree[6] = {
55 3 * 512, /* 6MB */ 56 3 * 512, /* 6MB */
@@ -57,6 +58,7 @@ static int lowmem_minfree[6] = {
57 4 * 1024, /* 16MB */ 58 4 * 1024, /* 16MB */
58 16 * 1024, /* 64MB */ 59 16 * 1024, /* 64MB */
59}; 60};
61
60static int lowmem_minfree_size = 4; 62static int lowmem_minfree_size = 4;
61 63
62static unsigned long lowmem_deathpending_timeout; 64static unsigned long lowmem_deathpending_timeout;