]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blobdiff - arch/i386/kernel/cpu/cpufreq/longrun.c
Revert "[CPUFREQ] constify cpufreq_driver where possible."
[mirror_ubuntu-focal-kernel.git] / arch / i386 / kernel / cpu / cpufreq / longrun.c
index e11fd86ce8fb942a40fb48080efb4c472ad9aef3..b2689514295ab361057623dd7c2afb56d7deb81e 100644 (file)
@@ -18,7 +18,7 @@
 
 #define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, "longrun", msg)
 
-static const struct cpufreq_driver longrun_driver;
+static struct cpufreq_driver   longrun_driver;
 
 /**
  * longrun_{low,high}_freq is needed for the conversion of cpufreq kHz
@@ -280,7 +280,7 @@ static int __init longrun_cpu_init(struct cpufreq_policy *policy)
 }
 
 
-static const struct cpufreq_driver longrun_driver = {
+static struct cpufreq_driver longrun_driver = {
        .flags          = CPUFREQ_CONST_LOOPS,
        .verify         = longrun_verify_policy,
        .setpolicy      = longrun_set_policy,