blob: 0c767a23dee122057fcd9ff7378260fcfcf6e4e1 [file] [log] [blame]
b.liud440f9f2025-04-18 10:44:31 +08001#include "ql_lpm.h"
2#include "mbtk_lpm.h"
3#include "mbtk_type.h"
4#include "mbtk_log.h"
5
6int ql_lpm_init(ql_lpm_handler_t ql_lpm_handler)
7{
8 if(mbtk_lpm_init((mbtk_lpm_handler_t)ql_lpm_handler))
9 {
10 LOGE("ql_lpm_init fail");
11 return -1;
12 }
13
14 return 0;
15}
16
17int ql_lpm_deinit(void)
18{
19 mbtk_lpm_deinit();
20
21 return 0;
22}
23
24