dt-bindings:iio:adc:remove triggers

The trigger child nodes are not necessary anymore as they are defined
directly by the driver, depending on the compatible string.

Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Cc: Rob Herring <robh+dt@kernel.org>
Link: https://lore.kernel.org/r/20201128222818.1910764-7-alexandre.belloni@bootlin.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
Alexandre Belloni 2020-11-28 23:28:14 +01:00 committed by Jonathan Cameron
parent 09d4726b0a
commit f1005415a8

View file

@ -97,29 +97,6 @@ required:
- atmel,adc-startup-time
- atmel,adc-vref
patternProperties:
"^(trigger)[0-9]$":
type: object
description: Child node to describe a trigger exposed to the user.
properties:
trigger-name:
$ref: /schemas/types.yaml#/definitions/string
description: Identifying name.
trigger-value:
$ref: /schemas/types.yaml#/definitions/uint32
description:
Value to put in the Trigger register to activate this trigger
trigger-external:
$ref: /schemas/types.yaml#/definitions/flag
description: This trigger is provided from an external pin.
additionalProperties: false
required:
- trigger-name
- trigger-value
examples:
- |
#include <dt-bindings/dma/at91.h>
@ -139,29 +116,6 @@ examples:
atmel,adc-use-external-triggers;
atmel,adc-vref = <3300>;
atmel,adc-use-res = "lowres";
trigger0 {
trigger-name = "external-rising";
trigger-value = <0x1>;
trigger-external;
};
trigger1 {
trigger-name = "external-falling";
trigger-value = <0x2>;
trigger-external;
};
trigger2 {
trigger-name = "external-any";
trigger-value = <0x3>;
trigger-external;
};
trigger3 {
trigger-name = "continuous";
trigger-value = <0x6>;
};
};
};
...