16 lines
247 B
C
16 lines
247 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2019 MediaTek Inc.
|
|
*/
|
|
|
|
#ifndef POB_PFM_H
|
|
#define POB_PFM_H
|
|
|
|
int pob_qos_pfm_init(void);
|
|
void pob_qos_pfm_exit(void);
|
|
int pob_qos_pfm_enable(void);
|
|
int pob_qos_pfm_disable(void);
|
|
|
|
#endif
|
|
|