diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-08-29 17:52:39 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:31:31 -0400 |
commit | 70e522a02838e52ca007d3f183171fd9324eceb4 (patch) | |
tree | e889f61014e95da2ac41185a7686d911e0f70b66 /drivers/cpuidle/governors/ladder.c | |
parent | 884b17e109d61e95ee4c652cf6873341bf1dca63 (diff) | |
download | blackbird-op-linux-70e522a02838e52ca007d3f183171fd9324eceb4.tar.gz blackbird-op-linux-70e522a02838e52ca007d3f183171fd9324eceb4.zip |
cpuidle: ladder.c needs module.h and not just moduleparam.h
This file has module_init/exit and MODULE_LICENSE, and so it
needs the full module.h header.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'drivers/cpuidle/governors/ladder.c')
-rw-r--r-- | drivers/cpuidle/governors/ladder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpuidle/governors/ladder.c b/drivers/cpuidle/governors/ladder.c index f62fde21e962..3b8fce20f023 100644 --- a/drivers/cpuidle/governors/ladder.c +++ b/drivers/cpuidle/governors/ladder.c @@ -15,7 +15,7 @@ #include <linux/kernel.h> #include <linux/cpuidle.h> #include <linux/pm_qos.h> -#include <linux/moduleparam.h> +#include <linux/module.h> #include <linux/jiffies.h> #include <asm/io.h> |