Skip to content

Commit

Permalink
Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git…
Browse files Browse the repository at this point in the history
…/davej/cpufreq

* 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq:
  [CPUFREQ] Fix format string bug.
  • Loading branch information
Linus Torvalds committed Jun 9, 2008
2 parents d563923 + 326f6a5 commit cc55875
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/cpufreq/cpufreq.c
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ static int cpufreq_parse_governor(char *str_governor, unsigned int *policy,
int ret;

mutex_unlock(&cpufreq_governor_mutex);
ret = request_module(name);
ret = request_module("%s", name);
mutex_lock(&cpufreq_governor_mutex);

if (ret == 0)
Expand Down

0 comments on commit cc55875

Please sign in to comment.