Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ASoC: dt-bindings: tegra20-das: Convert to schema

Convert NVIDIA Tegra20 DAS (Digital Audio Switch) binding to schema.

Signed-off-by: Mohammad Shehar Yaar Tausif <sheharyaar48@gmail.com>
Reviewed-by: Krzysztof Kozlowski <krzk@kernel.org>
Link: https://lore.kernel.org/r/20240418163326.58365-1-sheharyaar48@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Mohammad Shehar Yaar Tausif and committed by
Mark Brown
ed37d240 9be51470

+36 -12
-12
Documentation/devicetree/bindings/sound/nvidia,tegra20-das.txt
··· 1 - NVIDIA Tegra 20 DAS (Digital Audio Switch) controller 2 - 3 - Required properties: 4 - - compatible : "nvidia,tegra20-das" 5 - - reg : Should contain DAS registers location and length 6 - 7 - Example: 8 - 9 - das@70000c00 { 10 - compatible = "nvidia,tegra20-das"; 11 - reg = <0x70000c00 0x80>; 12 - };
+36
Documentation/devicetree/bindings/sound/nvidia,tegra20-das.yaml
··· 1 + # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/sound/nvidia,tegra20-das.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: NVIDIA Tegra 20 DAS (Digital Audio Switch) controller 8 + 9 + maintainers: 10 + - Thierry Reding <treding@nvidia.com> 11 + - Jon Hunter <jonathanh@nvidia.com> 12 + 13 + properties: 14 + compatible: 15 + const: nvidia,tegra20-das 16 + 17 + reg: 18 + maxItems: 1 19 + 20 + required: 21 + - compatible 22 + - reg 23 + 24 + additionalProperties: false 25 + 26 + examples: 27 + - | 28 + bus { 29 + #address-cells = <1>; 30 + #size-cells = <1>; 31 + das@70000c00 { 32 + compatible = "nvidia,tegra20-das"; 33 + reg = <0x70000c00 0x80>; 34 + }; 35 + }; 36 + ...