treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / Documentation / devicetree / bindings / gpu / samsung-rotator.yaml
blobf4dfa6fc724c3aada9936f91fedf5ba1ea087ec4
1 # SPDX-License-Identifier: GPL-2.0
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/gpu/samsung-rotator.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Samsung SoC Image Rotator
9 maintainers:
10   - Inki Dae <inki.dae@samsung.com>
12 properties:
13   compatible:
14     enum:
15       - "samsung,s5pv210-rotator"
16       - "samsung,exynos4210-rotator"
17       - "samsung,exynos4212-rotator"
18       - "samsung,exynos5250-rotator"
19   reg:
20     maxItems: 1
22   interrupts:
23     maxItems: 1
25   clocks:
26     maxItems: 1
28   clock-names:
29     items:
30       - const: rotator
32 required:
33   - compatible
34   - reg
35   - interrupts
36   - clocks
37   - clock-names
39 examples:
40   - |
41     rotator@12810000 {
42         compatible = "samsung,exynos4210-rotator";
43         reg = <0x12810000 0x1000>;
44         interrupts = <0 83 0>;
45         clocks = <&clock 278>;
46         clock-names = "rotator";
47     };