mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
b27aa4d878
qcom_iris_driver has been removed since
commit 1fcef985c8
("remoteproc: qcom: wcnss: Fix race
with iris probe"), so remove it.
Signed-off-by: Gaosheng Cui <cuigaosheng1@huawei.com>
Reviewed-by: Mukesh Ojha <quic_mojha@quicinc.com>
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
Link: https://lore.kernel.org/r/20220911090637.3208939-1-cuigaosheng1@huawei.com
24 lines
481 B
C
24 lines
481 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __QCOM_WNCSS_H__
|
|
#define __QCOM_WNCSS_H__
|
|
|
|
struct qcom_iris;
|
|
struct qcom_wcnss;
|
|
|
|
struct wcnss_vreg_info {
|
|
const char * const name;
|
|
int min_voltage;
|
|
int max_voltage;
|
|
|
|
int load_uA;
|
|
|
|
bool super_turbo;
|
|
};
|
|
|
|
struct qcom_iris *qcom_iris_probe(struct device *parent, bool *use_48mhz_xo);
|
|
void qcom_iris_remove(struct qcom_iris *iris);
|
|
int qcom_iris_enable(struct qcom_iris *iris);
|
|
void qcom_iris_disable(struct qcom_iris *iris);
|
|
|
|
#endif
|