Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1431893

[PATCH v2 1/3] intel_pstate: Fix incorrect placement of __initdata

From Jisheng Zhang <jszhang@marvell.com>
Newsgroups linux.kernel
Subject [PATCH v2 1/3] intel_pstate: Fix incorrect placement of __initdata
Date 2016-06-27 12:20 +0200
Message-ID <rOBO2-7lH-13@gated-at.bofh.it> (permalink)
References <rOBO1-7lH-7@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


__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>
---
 drivers/cpufreq/intel_pstate.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/cpufreq/intel_pstate.c b/drivers/cpufreq/intel_pstate.c
index fe9dc17..44099e9 100644
--- a/drivers/cpufreq/intel_pstate.c
+++ b/drivers/cpufreq/intel_pstate.c
@@ -1574,9 +1574,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)
-- 
2.8.1

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH v2 1/3] intel_pstate: Fix incorrect placement of __initdata Jisheng Zhang <jszhang@marvell.com> - 2016-06-27 12:20 +0200
  Re: [PATCH v2 1/3] intel_pstate: Fix incorrect placement of  __initdata Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> - 2016-06-27 19:20 +0200

csiph-web