lkml.org 
[lkml]   [2021]   [Apr]   [16]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] sched/core: Add in additional const on preempt_modes array declaration
Date
From: Colin Ian King <colin.king@canonical.com>

Checkpatch warnings that there is a missing const, fix this by adding it.
Clean us up warning:

"WARNING: static const char * array should probably be static
const char * const"

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
kernel/sched/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index 42c06fccade5..beaa6263f4c3 100644
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
@@ -5472,7 +5472,7 @@ static ssize_t sched_dynamic_write(struct file *filp, const char __user *ubuf,

static int sched_dynamic_show(struct seq_file *m, void *v)
{
- static const char * preempt_modes[] = {
+ static const char * const preempt_modes[] = {
"none", "voluntary", "full"
};
int i;
--
2.30.2
\
 
 \ /
  Last update: 2021-04-16 10:37    [W:0.179 / U:0.024 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site