|
@@ -527,6 +527,8 @@ EXPORT_SYMBOL(devfreq_add_device);
|
|
|
/**
|
|
|
* devfreq_remove_device() - Remove devfreq feature from a device.
|
|
|
* @devfreq: the devfreq instance to be removed
|
|
|
+ *
|
|
|
+ * The opposite of devfreq_add_device().
|
|
|
*/
|
|
|
int devfreq_remove_device(struct devfreq *devfreq)
|
|
|
{
|
|
@@ -542,6 +544,10 @@ EXPORT_SYMBOL(devfreq_remove_device);
|
|
|
/**
|
|
|
* devfreq_suspend_device() - Suspend devfreq of a device.
|
|
|
* @devfreq: the devfreq instance to be suspended
|
|
|
+ *
|
|
|
+ * This function is intended to be called by the pm callbacks
|
|
|
+ * (e.g., runtime_suspend, suspend) of the device driver that
|
|
|
+ * holds the devfreq.
|
|
|
*/
|
|
|
int devfreq_suspend_device(struct devfreq *devfreq)
|
|
|
{
|
|
@@ -559,6 +565,10 @@ EXPORT_SYMBOL(devfreq_suspend_device);
|
|
|
/**
|
|
|
* devfreq_resume_device() - Resume devfreq of a device.
|
|
|
* @devfreq: the devfreq instance to be resumed
|
|
|
+ *
|
|
|
+ * This function is intended to be called by the pm callbacks
|
|
|
+ * (e.g., runtime_resume, resume) of the device driver that
|
|
|
+ * holds the devfreq.
|
|
|
*/
|
|
|
int devfreq_resume_device(struct devfreq *devfreq)
|
|
|
{
|