| #include "ql_lpm.h" | |
| #include "mbtk_lpm.h" | |
| #include "mbtk_type.h" | |
| #include "mbtk_log.h" | |
| int ql_lpm_init(ql_lpm_handler_t ql_lpm_handler) | |
| { | |
| if(mbtk_lpm_init((mbtk_lpm_handler_t)ql_lpm_handler)) | |
| { | |
| LOGE("ql_lpm_init fail"); | |
| return -1; | |
| } | |
| return 0; | |
| } | |
| int ql_lpm_deinit(void) | |
| { | |
| mbtk_lpm_deinit(); | |
| return 0; | |
| } | |