mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
kernel/profile.c: use static const char instead of static char
schedstr, sleepstr and kvmstr are only used in strcmp & strlen Signed-off-by: Fabian Frederick <fabf@skynet.be> Cc: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
aba871f1e9
commit
f3da64d1ea
@ -52,9 +52,9 @@ static DEFINE_MUTEX(profile_flip_mutex);
|
|||||||
|
|
||||||
int profile_setup(char *str)
|
int profile_setup(char *str)
|
||||||
{
|
{
|
||||||
static char schedstr[] = "schedule";
|
static const char schedstr[] = "schedule";
|
||||||
static char sleepstr[] = "sleep";
|
static const char sleepstr[] = "sleep";
|
||||||
static char kvmstr[] = "kvm";
|
static const char kvmstr[] = "kvm";
|
||||||
int par;
|
int par;
|
||||||
|
|
||||||
if (!strncmp(str, sleepstr, strlen(sleepstr))) {
|
if (!strncmp(str, sleepstr, strlen(sleepstr))) {
|
||||||
|
Loading…
Reference in New Issue
Block a user