diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-07-27 22:15:01 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-07-27 22:15:01 +0000 |
commit | 7996a3d79d55b7f879dfd62e202bbfe2963718d3 (patch) | |
tree | 8d9f6759fec4099b9be503c11c7ed174f7204980 /libdde-linux26/lib/src/arch/l4/power.c | |
parent | 4fbe7358c7747a9165f776eb19addbb9baf7def2 (diff) |
really properly move files
Diffstat (limited to 'libdde-linux26/lib/src/arch/l4/power.c')
-rw-r--r-- | libdde-linux26/lib/src/arch/l4/power.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/libdde-linux26/lib/src/arch/l4/power.c b/libdde-linux26/lib/src/arch/l4/power.c new file mode 100644 index 00000000..e36487bd --- /dev/null +++ b/libdde-linux26/lib/src/arch/l4/power.c @@ -0,0 +1,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; } |