diff options
author | Dave Jones <davej@redhat.com> | 2007-02-22 19:08:27 -0500 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2007-02-22 19:08:27 -0500 |
commit | aeeddc1435c37fa3fc844f31d39c185b08de4158 (patch) | |
tree | 46269bbff184799c2cded9ccd433e980c38f7b4b /drivers/cpufreq | |
parent | b44755cfaa72e7ed3d831a946bb4e7dfe7548966 (diff) |
[CPUFREQ] constify cpufreq_driver where possible.
Not all cases are possible due to ->flags being set at runtime
on some drivers.
Signed-off-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r-- | drivers/cpufreq/cpufreq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index f52facc570f5..a12d6a236df1 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c | |||
@@ -1752,7 +1752,7 @@ static struct notifier_block __cpuinitdata cpufreq_cpu_notifier = | |||
1752 | * (and isn't unregistered in the meantime). | 1752 | * (and isn't unregistered in the meantime). |
1753 | * | 1753 | * |
1754 | */ | 1754 | */ |
1755 | int cpufreq_register_driver(struct cpufreq_driver *driver_data) | 1755 | int cpufreq_register_driver(const struct cpufreq_driver *driver_data) |
1756 | { | 1756 | { |
1757 | unsigned long flags; | 1757 | unsigned long flags; |
1758 | int ret; | 1758 | int ret; |
@@ -1817,7 +1817,7 @@ EXPORT_SYMBOL_GPL(cpufreq_register_driver); | |||
1817 | * Returns zero if successful, and -EINVAL if the cpufreq_driver is | 1817 | * Returns zero if successful, and -EINVAL if the cpufreq_driver is |
1818 | * currently not initialised. | 1818 | * currently not initialised. |
1819 | */ | 1819 | */ |
1820 | int cpufreq_unregister_driver(struct cpufreq_driver *driver) | 1820 | int cpufreq_unregister_driver(const struct cpufreq_driver *driver) |
1821 | { | 1821 | { |
1822 | unsigned long flags; | 1822 | unsigned long flags; |
1823 | 1823 | ||