summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorJeevan Shriram <jshriram@codeaurora.org>2016-04-28 14:42:51 -0700
committerKyle Yan <kyan@codeaurora.org>2016-04-28 16:48:01 -0700
commit88df6d8843593748af8381311614f2130120dcec (patch)
tree576ff9c83cbb29156694448ae3020cf6d6cf7f9e /include/linux
parent8cfd4a1557b4caa69d36099c3d204085dd7c1fed (diff)
sched: use proper typedef for cpumask
commit 55b8e041e6b3 ("sched: take into account of limited CPU min and max frequencies") has introduced a typedef bug and is fixed in this change. CRs-Fixed: 1006303 Change-Id: I6f75d4d0179a79544b4180a3ba155916c861edb5 Signed-off-by: Jeevan Shriram <jshriram@codeaurora.org>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/sched.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 2c602da17a92..5ad9cf84a581 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -2389,8 +2389,8 @@ static inline int sched_update_freq_max_load(const cpumask_t *cpumask)
return 0;
}
-static inline void sched_update_cpu_freq_min_max(const cpumask *cpus, u32 fmin,
- u32 fmax) { }
+static inline void sched_update_cpu_freq_min_max(const cpumask_t *cpus,
+ u32 fmin, u32 fmax) { }
#endif
#ifdef CONFIG_NO_HZ_COMMON