|
@@ -74,7 +74,7 @@ static DEFINE_SPINLOCK(pm_qos_lock);
|
|
static struct pm_qos_object null_pm_qos;
|
|
static struct pm_qos_object null_pm_qos;
|
|
static BLOCKING_NOTIFIER_HEAD(cpu_dma_lat_notifier);
|
|
static BLOCKING_NOTIFIER_HEAD(cpu_dma_lat_notifier);
|
|
static struct pm_qos_object cpu_dma_pm_qos = {
|
|
static struct pm_qos_object cpu_dma_pm_qos = {
|
|
- .requests = PLIST_HEAD_INIT(cpu_dma_pm_qos.requests, pm_qos_lock),
|
|
|
|
|
|
+ .requests = PLIST_HEAD_INIT(cpu_dma_pm_qos.requests),
|
|
.notifiers = &cpu_dma_lat_notifier,
|
|
.notifiers = &cpu_dma_lat_notifier,
|
|
.name = "cpu_dma_latency",
|
|
.name = "cpu_dma_latency",
|
|
.target_value = PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE,
|
|
.target_value = PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE,
|
|
@@ -84,7 +84,7 @@ static struct pm_qos_object cpu_dma_pm_qos = {
|
|
|
|
|
|
static BLOCKING_NOTIFIER_HEAD(network_lat_notifier);
|
|
static BLOCKING_NOTIFIER_HEAD(network_lat_notifier);
|
|
static struct pm_qos_object network_lat_pm_qos = {
|
|
static struct pm_qos_object network_lat_pm_qos = {
|
|
- .requests = PLIST_HEAD_INIT(network_lat_pm_qos.requests, pm_qos_lock),
|
|
|
|
|
|
+ .requests = PLIST_HEAD_INIT(network_lat_pm_qos.requests),
|
|
.notifiers = &network_lat_notifier,
|
|
.notifiers = &network_lat_notifier,
|
|
.name = "network_latency",
|
|
.name = "network_latency",
|
|
.target_value = PM_QOS_NETWORK_LAT_DEFAULT_VALUE,
|
|
.target_value = PM_QOS_NETWORK_LAT_DEFAULT_VALUE,
|
|
@@ -95,7 +95,7 @@ static struct pm_qos_object network_lat_pm_qos = {
|
|
|
|
|
|
static BLOCKING_NOTIFIER_HEAD(network_throughput_notifier);
|
|
static BLOCKING_NOTIFIER_HEAD(network_throughput_notifier);
|
|
static struct pm_qos_object network_throughput_pm_qos = {
|
|
static struct pm_qos_object network_throughput_pm_qos = {
|
|
- .requests = PLIST_HEAD_INIT(network_throughput_pm_qos.requests, pm_qos_lock),
|
|
|
|
|
|
+ .requests = PLIST_HEAD_INIT(network_throughput_pm_qos.requests),
|
|
.notifiers = &network_throughput_notifier,
|
|
.notifiers = &network_throughput_notifier,
|
|
.name = "network_throughput",
|
|
.name = "network_throughput",
|
|
.target_value = PM_QOS_NETWORK_THROUGHPUT_DEFAULT_VALUE,
|
|
.target_value = PM_QOS_NETWORK_THROUGHPUT_DEFAULT_VALUE,
|