Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/Documentation/devicetree/bindings/hwmon/adi,ad741x.yaml
26308 views
1
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2
%YAML 1.2
3
---
4
$id: http://devicetree.org/schemas/hwmon/adi,ad741x.yaml#
5
$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7
title: Analog Devices AD7416/AD7417/AD7418 temperature sensors
8
9
maintainers:
10
- Krzysztof Kozlowski <krzk@kernel.org>
11
12
properties:
13
compatible:
14
enum:
15
- adi,ad7416
16
- adi,ad7417
17
- adi,ad7418
18
19
reg:
20
maxItems: 1
21
22
required:
23
- compatible
24
- reg
25
26
additionalProperties: false
27
28
examples:
29
- |
30
i2c {
31
#address-cells = <1>;
32
#size-cells = <0>;
33
34
temperature-sensor@28 {
35
compatible = "adi,ad7418";
36
reg = <0x28>;
37
};
38
};
39
40