]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
intel_pstate: Fix incorrect placement of __initdata
authorJisheng Zhang <jszhang@marvell.com>
Mon, 27 Jun 2016 10:07:16 +0000 (18:07 +0800)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Mon, 27 Jun 2016 22:04:04 +0000 (00:04 +0200)
__initdata should be placed between the variable name and equal sign
(if there is) for the variable to be placed in the intended section.

Signed-off-by: Jisheng Zhang <jszhang@marvell.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/cpufreq/intel_pstate.c

index 10393fb4a9559447274c226e7d9b47a41f09739f..6390d524a211b4f693fe72de722ffc6a7174f4ee 100644 (file)
@@ -1596,9 +1596,9 @@ static struct cpufreq_driver intel_pstate_driver = {
        .name           = "intel_pstate",
 };
 
-static int __initdata no_load;
-static int __initdata no_hwp;
-static int __initdata hwp_only;
+static int no_load __initdata;
+static int no_hwp __initdata;
+static int hwp_only __initdata;
 static unsigned int force_load;
 
 static int intel_pstate_msrs_not_valid(void)