diff options
-rw-r--r-- | drivers/cpuidle/governor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpuidle/governor.c b/drivers/cpuidle/governor.c index ca89412f5122..fb9f511cca23 100644 --- a/drivers/cpuidle/governor.c +++ b/drivers/cpuidle/governor.c | |||
@@ -28,7 +28,7 @@ static struct cpuidle_governor * __cpuidle_find_governor(const char *str) | |||
28 | struct cpuidle_governor *gov; | 28 | struct cpuidle_governor *gov; |
29 | 29 | ||
30 | list_for_each_entry(gov, &cpuidle_governors, governor_list) | 30 | list_for_each_entry(gov, &cpuidle_governors, governor_list) |
31 | if (!strnicmp(str, gov->name, CPUIDLE_NAME_LEN)) | 31 | if (!strncasecmp(str, gov->name, CPUIDLE_NAME_LEN)) |
32 | return gov; | 32 | return gov; |
33 | 33 | ||
34 | return NULL; | 34 | return NULL; |