Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef __QCOM_RPM_H__
0003 #define __QCOM_RPM_H__
0004 
0005 #include <linux/types.h>
0006 
0007 struct qcom_rpm;
0008 
0009 #define QCOM_RPM_ACTIVE_STATE   0
0010 #define QCOM_RPM_SLEEP_STATE    1
0011 
0012 int qcom_rpm_write(struct qcom_rpm *rpm, int state, int resource, u32 *buf, size_t count);
0013 
0014 #endif