00001 /* Dummy functions for power management. */ 00002 00003 #include "local.h" 00004 #include <linux/device.h> 00005 00006 int device_pm_add(struct device * dev) 00007 { 00008 WARN_UNIMPL; 00009 return 0; 00010 } 00011 00012 00013 void device_pm_remove(struct device * dev) 00014 { 00015 WARN_UNIMPL; 00016 } 00017 00018 int pm_qos_add_requirement(int qos, char *name, s32 value) { return 0; } 00019 int pm_qos_update_requirement(int qos, char *name, s32 new_value) { return 0; } 00020 void pm_qos_remove_requirement(int qos, char *name) { } 00021 int pm_qos_requirement(int qos) { return 0; } 00022 int pm_qos_add_notifier(int qos, struct notifier_block *notifier) { return 0; } 00023 int pm_qos_remove_notifier(int qos, struct notifier_block *notifier) { return 0; }
1.5.6