1* Qualcomm Atheros ath10k wireless devices
2
3For ath10k devices the calibration data can be provided through Device
4Tree. The node is a child node of the PCI controller.
5
6Required properties:
7-compatible : Should be "qcom,ath10k"
8
9Optional properties:
10- qcom,ath10k-calibration-data : calibration data as an array, the
11				 length can vary between hw versions
12
13
14Example:
15
16pci {
17	pcie@0 {
18		reg = <0 0 0 0 0>;
19		#interrupt-cells = <1>;
20		#size-cells = <2>;
21		#address-cells = <3>;
22		device_type = "pci";
23
24		ath10k@0,0 {
25			reg = <0 0 0 0 0>;
26			device_type = "pci";
27			qcom,ath10k-calibration-data = [ 01 02 03 ... ];
28		};
29	};
30};
31