sch_tbf: fix two null pointer dereferences on init failure
[linux-2.6/btrfs-unstable.git] / drivers / remoteproc / qcom_wcnss.h
blob25fb7f62a4576ddda9cea53247246ae26c84b9de
1 #ifndef __QCOM_WNCSS_H__
2 #define __QCOM_WNCSS_H__
4 struct qcom_iris;
5 struct qcom_wcnss;
7 extern struct platform_driver qcom_iris_driver;
9 struct wcnss_vreg_info {
10 const char * const name;
11 int min_voltage;
12 int max_voltage;
14 int load_uA;
16 bool super_turbo;
19 int qcom_iris_enable(struct qcom_iris *iris);
20 void qcom_iris_disable(struct qcom_iris *iris);
22 void qcom_wcnss_assign_iris(struct qcom_wcnss *wcnss, struct qcom_iris *iris, bool use_48mhz_xo);
24 #endif