#include "lynq-qser-autosuspend.h" | |
#include "mbtk_type.h" | |
int qser_autosuspend_enable(char enable) | |
{ | |
UNUSED(enable); | |
return 0; | |
} | |
int qser_wakelock_create(const char* name , size_t len) | |
{ | |
UNUSED(name); | |
UNUSED(len); | |
return 0; | |
} | |
int qser_wakelock_lock(int fd) | |
{ | |
UNUSED(fd); | |
return 0; | |
} | |
int qser_wakelock_unlock(int fd) | |
{ | |
UNUSED(fd); | |
return 0; | |
} | |
int qser_wakelock_destroy(int fd) | |
{ | |
UNUSED(fd); | |
return 0; | |
} | |