mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-06 20:05:16 +07:00
791d3ef2e1
'interrupt-parent' is often documented as part of define bindings, but it is really outside the scope of a device binding. It's never required in a given node as it is often inherited from a parent node. Or it can be implicit if a parent node is an 'interrupt-controller' node. So remove it from all the binding files. Cc: Mark Rutland <mark.rutland@arm.com> Cc: devicetree@vger.kernel.org Signed-off-by: Rob Herring <robh@kernel.org>
22 lines
472 B
Plaintext
22 lines
472 B
Plaintext
* Bosch BMC150 magnetometer sensor
|
|
|
|
http://ae-bst.resource.bosch.com/media/products/dokumente/bmc150/BST-BMC150-DS000-04.pdf
|
|
|
|
Required properties:
|
|
|
|
- compatible : should be "bosch,bmc150_magn"
|
|
- reg : the I2C address of the magnetometer
|
|
|
|
Optional properties:
|
|
|
|
- interrupts : interrupt mapping for GPIO IRQ
|
|
|
|
Example:
|
|
|
|
bmc150_magn@12 {
|
|
compatible = "bosch,bmc150_magn";
|
|
reg = <0x12>;
|
|
interrupt-parent = <&gpio1>;
|
|
interrupts = <0 1>;
|
|
};
|