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