diff options
author | Nishanth Menon <nm@ti.com> | 2012-10-25 19:50:53 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2012-11-14 18:35:06 -0500 |
commit | 1a1357ea176670867f347419c3345e2becc07338 (patch) | |
tree | 8e4c2558a84c7f2d50ef16724726115e639ac33d /drivers/devfreq | |
parent | 12e26265e6225bf93b2fdc70399774b31e2dd980 (diff) |
PM / devfreq: make devfreq_class static
devfreq_class is used internally by devfreq and has no
need to be globally available.
This also fixes the following sparse warning:
drivers/devfreq/devfreq.c:30:14: warning: symbol 'devfreq_class' was not declared. Should it be static?
Signed-off-by: Nishanth Menon <nm@ti.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/devfreq')
-rw-r--r-- | drivers/devfreq/devfreq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/devfreq/devfreq.c b/drivers/devfreq/devfreq.c index 79a7343c28a6..789af4ff5c9c 100644 --- a/drivers/devfreq/devfreq.c +++ b/drivers/devfreq/devfreq.c | |||
@@ -27,7 +27,7 @@ | |||
27 | #include <linux/hrtimer.h> | 27 | #include <linux/hrtimer.h> |
28 | #include "governor.h" | 28 | #include "governor.h" |
29 | 29 | ||
30 | struct class *devfreq_class; | 30 | static struct class *devfreq_class; |
31 | 31 | ||
32 | /* | 32 | /* |
33 | * devfreq core provides delayed work based load monitoring helper | 33 | * devfreq core provides delayed work based load monitoring helper |