summaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/iio/adc
diff options
context:
space:
mode:
authorAlexandre Belloni <alexandre.belloni@bootlin.com>2020-11-28 23:28:14 +0100
committerJonathan Cameron <Jonathan.Cameron@huawei.com>2020-12-03 19:40:23 +0000
commitf1005415a8bf4d6359626210a31c8a7b08780667 (patch)
tree47e83ddbeef861d15b5b9910c1d893fd2c081a91 /Documentation/devicetree/bindings/iio/adc
parent09d4726b0af6c867cb3884e5e924f778fe6bc79a (diff)
downloadlinux-f1005415a8bf4d6359626210a31c8a7b08780667.tar.bz2
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>
Diffstat (limited to 'Documentation/devicetree/bindings/iio/adc')
-rw-r--r--Documentation/devicetree/bindings/iio/adc/atmel,sama9260-adc.yaml46
1 files changed, 0 insertions, 46 deletions
diff --git a/Documentation/devicetree/bindings/iio/adc/atmel,sama9260-adc.yaml b/Documentation/devicetree/bindings/iio/adc/atmel,sama9260-adc.yaml
index 9b0ff59e75de..e6a1f915b542 100644
--- a/Documentation/devicetree/bindings/iio/adc/atmel,sama9260-adc.yaml
+++ b/Documentation/devicetree/bindings/iio/adc/atmel,sama9260-adc.yaml
@@ -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>;
- };
};
};
...