summaryrefslogtreecommitdiff
path: root/libdde_linux26/lib/src/arch/l4/power.c
blob: e36487bdbeb3a972bc5a874fe346170d513d069e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Dummy functions for power management. */

#include "local.h"
#include <linux/device.h>

int device_pm_add(struct device * dev)
{
	WARN_UNIMPL;
	return 0;
}


void device_pm_remove(struct device * dev)
{
	WARN_UNIMPL;
}

int pm_qos_add_requirement(int qos, char *name, s32 value) { return 0; }
int pm_qos_update_requirement(int qos, char *name, s32 new_value) { return 0; }
void pm_qos_remove_requirement(int qos, char *name) { }
int pm_qos_requirement(int qos) { return 0; }
int pm_qos_add_notifier(int qos, struct notifier_block *notifier) {  return 0; }
int pm_qos_remove_notifier(int qos, struct notifier_block *notifier) { return 0; }