[CPUFREQ] cpufreq.h: Fix some checkpatch.pl coding style issues.
Before: $ scripts/checkpatch.pl --file --terse include/linux/cpufreq.h total: 14 errors, 11 warnings, 419 lines checked After: $ scripts/checkpatch.pl --file --terse include/linux/cpufreq.h total: 2 errors, 4 warnings, 422 lines checked Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Dave Jones <davej@redhat.com>
This commit is contained in:
committed by
Dave Jones
parent
2d06d8c49a
commit
335dc3335f
@@ -72,13 +72,15 @@ extern struct kobject *cpufreq_global_kobject;
|
|||||||
struct cpufreq_cpuinfo {
|
struct cpufreq_cpuinfo {
|
||||||
unsigned int max_freq;
|
unsigned int max_freq;
|
||||||
unsigned int min_freq;
|
unsigned int min_freq;
|
||||||
unsigned int transition_latency; /* in 10^(-9) s = nanoseconds */
|
|
||||||
|
/* in 10^(-9) s = nanoseconds */
|
||||||
|
unsigned int transition_latency;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct cpufreq_real_policy {
|
struct cpufreq_real_policy {
|
||||||
unsigned int min; /* in kHz */
|
unsigned int min; /* in kHz */
|
||||||
unsigned int max; /* in kHz */
|
unsigned int max; /* in kHz */
|
||||||
unsigned int policy; /* see above */
|
unsigned int policy; /* see above */
|
||||||
struct cpufreq_governor *governor; /* see below */
|
struct cpufreq_governor *governor; /* see below */
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -94,7 +96,7 @@ struct cpufreq_policy {
|
|||||||
unsigned int max; /* in kHz */
|
unsigned int max; /* in kHz */
|
||||||
unsigned int cur; /* in kHz, only needed if cpufreq
|
unsigned int cur; /* in kHz, only needed if cpufreq
|
||||||
* governors are used */
|
* governors are used */
|
||||||
unsigned int policy; /* see above */
|
unsigned int policy; /* see above */
|
||||||
struct cpufreq_governor *governor; /* see below */
|
struct cpufreq_governor *governor; /* see below */
|
||||||
|
|
||||||
struct work_struct update; /* if update_policy() needs to be
|
struct work_struct update; /* if update_policy() needs to be
|
||||||
@@ -167,11 +169,11 @@ static inline unsigned long cpufreq_scale(unsigned long old, u_int div, u_int mu
|
|||||||
|
|
||||||
struct cpufreq_governor {
|
struct cpufreq_governor {
|
||||||
char name[CPUFREQ_NAME_LEN];
|
char name[CPUFREQ_NAME_LEN];
|
||||||
int (*governor) (struct cpufreq_policy *policy,
|
int (*governor) (struct cpufreq_policy *policy,
|
||||||
unsigned int event);
|
unsigned int event);
|
||||||
ssize_t (*show_setspeed) (struct cpufreq_policy *policy,
|
ssize_t (*show_setspeed) (struct cpufreq_policy *policy,
|
||||||
char *buf);
|
char *buf);
|
||||||
int (*store_setspeed) (struct cpufreq_policy *policy,
|
int (*store_setspeed) (struct cpufreq_policy *policy,
|
||||||
unsigned int freq);
|
unsigned int freq);
|
||||||
unsigned int max_transition_latency; /* HW must be able to switch to
|
unsigned int max_transition_latency; /* HW must be able to switch to
|
||||||
next freq faster than this value in nano secs or we
|
next freq faster than this value in nano secs or we
|
||||||
@@ -180,7 +182,8 @@ struct cpufreq_governor {
|
|||||||
struct module *owner;
|
struct module *owner;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* pass a target to the cpufreq driver
|
/*
|
||||||
|
* Pass a target to the cpufreq driver.
|
||||||
*/
|
*/
|
||||||
extern int cpufreq_driver_target(struct cpufreq_policy *policy,
|
extern int cpufreq_driver_target(struct cpufreq_policy *policy,
|
||||||
unsigned int target_freq,
|
unsigned int target_freq,
|
||||||
@@ -239,7 +242,7 @@ struct cpufreq_driver {
|
|||||||
|
|
||||||
#define CPUFREQ_STICKY 0x01 /* the driver isn't removed even if
|
#define CPUFREQ_STICKY 0x01 /* the driver isn't removed even if
|
||||||
* all ->init() calls failed */
|
* all ->init() calls failed */
|
||||||
#define CPUFREQ_CONST_LOOPS 0x02 /* loops_per_jiffy or other kernel
|
#define CPUFREQ_CONST_LOOPS 0x02 /* loops_per_jiffy or other kernel
|
||||||
* "constants" aren't affected by
|
* "constants" aren't affected by
|
||||||
* frequency transitions */
|
* frequency transitions */
|
||||||
#define CPUFREQ_PM_NO_WARN 0x04 /* don't warn on suspend/resume speed
|
#define CPUFREQ_PM_NO_WARN 0x04 /* don't warn on suspend/resume speed
|
||||||
@@ -386,7 +389,7 @@ int cpufreq_frequency_table_target(struct cpufreq_policy *policy,
|
|||||||
/* the following 3 funtions are for cpufreq core use only */
|
/* the following 3 funtions are for cpufreq core use only */
|
||||||
struct cpufreq_frequency_table *cpufreq_frequency_get_table(unsigned int cpu);
|
struct cpufreq_frequency_table *cpufreq_frequency_get_table(unsigned int cpu);
|
||||||
struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu);
|
struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu);
|
||||||
void cpufreq_cpu_put (struct cpufreq_policy *data);
|
void cpufreq_cpu_put(struct cpufreq_policy *data);
|
||||||
|
|
||||||
/* the following are really really optional */
|
/* the following are really really optional */
|
||||||
extern struct freq_attr cpufreq_freq_attr_scaling_available_freqs;
|
extern struct freq_attr cpufreq_freq_attr_scaling_available_freqs;
|
||||||
|
Reference in New Issue
Block a user