44 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/iio/magnetometer/honeywell,hmc5843.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Honeywell HMC5843 magnetometer sensor8 9maintainers:10 - Neil Brown <neilb@suse.de>11 12properties:13 compatible:14 enum:15 - honeywell,hmc584316 - honeywell,hmc588317 - honeywell,hmc5883l18 - honeywell,hmc598319 20 reg:21 maxItems: 122 23 interrupts:24 maxItems: 125 26additionalProperties: false27 28required:29 - compatible30 - reg31 32examples:33 - |34 i2c {35 #address-cells = <1>;36 #size-cells = <0>;37 38 magnetometer@1e {39 compatible = "honeywell,hmc5843";40 reg = <0x1e>;41 };42 };43...44