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 v4.17 25 lines 504 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __QCOM_WNCSS_H__ 3#define __QCOM_WNCSS_H__ 4 5struct qcom_iris; 6struct qcom_wcnss; 7 8extern struct platform_driver qcom_iris_driver; 9 10struct wcnss_vreg_info { 11 const char * const name; 12 int min_voltage; 13 int max_voltage; 14 15 int load_uA; 16 17 bool super_turbo; 18}; 19 20int qcom_iris_enable(struct qcom_iris *iris); 21void qcom_iris_disable(struct qcom_iris *iris); 22 23void qcom_wcnss_assign_iris(struct qcom_wcnss *wcnss, struct qcom_iris *iris, bool use_48mhz_xo); 24 25#endif