Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros | Functions | Variables
domain_governor.c File Reference
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/pm_domain.h>
#include <linux/pm_qos.h>
#include <linux/hrtimer.h>

Go to the source code of this file.

Macros

#define default_power_down_ok   NULL
 
#define always_on_power_down_ok   NULL
 

Functions

bool default_stop_ok (struct device *dev)
 

Variables

struct dev_power_governor simple_qos_governor
 
struct dev_power_governor pm_domain_always_on_gov
 

Macro Definition Documentation

#define always_on_power_down_ok   NULL

Definition at line 239 of file domain_governor.c.

#define default_power_down_ok   NULL

Definition at line 238 of file domain_governor.c.

Function Documentation

bool default_stop_ok ( struct device dev)

Definition at line 233 of file domain_governor.c.

Variable Documentation

struct dev_power_governor pm_domain_always_on_gov
Initial value:
= {
.power_down_ok = always_on_power_down_ok,
.stop_ok = default_stop_ok,
}

pm_genpd_gov_always_on - A governor implementing an always-on policy

Definition at line 251 of file domain_governor.c.

struct dev_power_governor simple_qos_governor
Initial value:
= {
.stop_ok = default_stop_ok,
.power_down_ok = default_power_down_ok,
}

Definition at line 243 of file domain_governor.c.