Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.4 15 lines 378 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * Copyright (c) 2019, Linaro Ltd. 4 * Author: Georgi Djakov <georgi.djakov@linaro.org> 5 */ 6 7#ifndef __DRIVERS_INTERCONNECT_QCOM_SMD_RPM_H 8#define __DRIVERS_INTERCONNECT_QCOM_SMD_RPM_H 9 10#include <linux/soc/qcom/smd-rpm.h> 11 12bool qcom_icc_rpm_smd_available(void); 13int qcom_icc_rpm_smd_send(int ctx, int rsc_type, int id, u32 val); 14 15#endif