blob: 59a363fabfc459178815de58b21c197bd8ecb48e [file] [log] [blame]
b.liu4e243dc2023-11-27 11:20:00 +08001#include "lynq-qser-autosuspend.h"
2#include "mbtk_type.h"
b.liu5fa9e772023-11-23 18:00:55 +08003
4int qser_autosuspend_enable(char enable)
5{
6 UNUSED(enable);
7
8 return 0;
9}
10
11int qser_wakelock_create(const char* name , size_t len)
12{
13 UNUSED(name);
14 UNUSED(len);
15
16 return 0;
17}
18
19int qser_wakelock_lock(int fd)
20{
21 UNUSED(fd);
22
23 return 0;
24}
25
26int qser_wakelock_unlock(int fd)
27{
28 UNUSED(fd);
29
30 return 0;
31}
32
33int qser_wakelock_destroy(int fd)
34{
35 UNUSED(fd);
36
37 return 0;
38}
39
40
41