diff options
Diffstat (limited to 'kernel/power/qos.c')
| -rw-r--r-- | kernel/power/qos.c | 48 | 
1 files changed, 0 insertions, 48 deletions
diff --git a/kernel/power/qos.c b/kernel/power/qos.c index 33e3febaba53..9568a2fe7c11 100644 --- a/kernel/power/qos.c +++ b/kernel/power/qos.c @@ -78,57 +78,9 @@ static struct pm_qos_object cpu_dma_pm_qos = {  	.name = "cpu_dma_latency",  }; -static BLOCKING_NOTIFIER_HEAD(network_lat_notifier); -static struct pm_qos_constraints network_lat_constraints = { -	.list = PLIST_HEAD_INIT(network_lat_constraints.list), -	.target_value = PM_QOS_NETWORK_LAT_DEFAULT_VALUE, -	.default_value = PM_QOS_NETWORK_LAT_DEFAULT_VALUE, -	.no_constraint_value = PM_QOS_NETWORK_LAT_DEFAULT_VALUE, -	.type = PM_QOS_MIN, -	.notifiers = &network_lat_notifier, -}; -static struct pm_qos_object network_lat_pm_qos = { -	.constraints = &network_lat_constraints, -	.name = "network_latency", -}; - - -static BLOCKING_NOTIFIER_HEAD(network_throughput_notifier); -static struct pm_qos_constraints network_tput_constraints = { -	.list = PLIST_HEAD_INIT(network_tput_constraints.list), -	.target_value = PM_QOS_NETWORK_THROUGHPUT_DEFAULT_VALUE, -	.default_value = PM_QOS_NETWORK_THROUGHPUT_DEFAULT_VALUE, -	.no_constraint_value = PM_QOS_NETWORK_THROUGHPUT_DEFAULT_VALUE, -	.type = PM_QOS_MAX, -	.notifiers = &network_throughput_notifier, -}; -static struct pm_qos_object network_throughput_pm_qos = { -	.constraints = &network_tput_constraints, -	.name = "network_throughput", -}; - - -static BLOCKING_NOTIFIER_HEAD(memory_bandwidth_notifier); -static struct pm_qos_constraints memory_bw_constraints = { -	.list = PLIST_HEAD_INIT(memory_bw_constraints.list), -	.target_value = PM_QOS_MEMORY_BANDWIDTH_DEFAULT_VALUE, -	.default_value = PM_QOS_MEMORY_BANDWIDTH_DEFAULT_VALUE, -	.no_constraint_value = PM_QOS_MEMORY_BANDWIDTH_DEFAULT_VALUE, -	.type = PM_QOS_SUM, -	.notifiers = &memory_bandwidth_notifier, -}; -static struct pm_qos_object memory_bandwidth_pm_qos = { -	.constraints = &memory_bw_constraints, -	.name = "memory_bandwidth", -}; - -  static struct pm_qos_object *pm_qos_array[] = {  	&null_pm_qos,  	&cpu_dma_pm_qos, -	&network_lat_pm_qos, -	&network_throughput_pm_qos, -	&memory_bandwidth_pm_qos,  };  static ssize_t pm_qos_power_write(struct file *filp, const char __user *buf,  |