blob: 59a363fabfc459178815de58b21c197bd8ecb48e [file] [log] [blame]
#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;
}