diff options
Diffstat (limited to 'drivers/devfreq/governor.h')
| -rw-r--r-- | drivers/devfreq/governor.h | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/devfreq/governor.h b/drivers/devfreq/governor.h index bbe5ff9fcecf..dc7533ccc3db 100644 --- a/drivers/devfreq/governor.h +++ b/drivers/devfreq/governor.h @@ -31,6 +31,8 @@   * @name:		Governor's name   * @immutable:		Immutable flag for governor. If the value is 1,   *			this govenror is never changeable to other governor. + * @interrupt_driven:	Devfreq core won't schedule polling work for this + *			governor if value is set to 1.   * @get_target_freq:	Returns desired operating frequency for the device.   *			Basically, get_target_freq will run   *			devfreq_dev_profile.get_dev_status() to get the @@ -49,6 +51,7 @@ struct devfreq_governor {  	const char name[DEVFREQ_NAME_LEN];  	const unsigned int immutable; +	const unsigned int interrupt_driven;  	int (*get_target_freq)(struct devfreq *this, unsigned long *freq);  	int (*event_handler)(struct devfreq *devfreq,  				unsigned int event, void *data);  |