mirror of
https://github.com/torvalds/linux.git
synced 2026-05-02 21:42:42 -04:00
In the original txt format binding document ak4458.txt, the supply names
are 'AVDD-supply', 'DVDD-supply', and they are also used in driver. But in
the commit converting to yaml format, they are changed to 'avdd-supply',
'dvdd-supply'. After search all the dts file, these names 'AVDD-supply',
'DVDD-supply', 'avdd-supply', 'dvdd-supply' are not used in any dts
file. So it is safe to fix the yaml binding document.
Fixes: 829d78e3ea ("ASoC: dt-bindings: ak5558: Convert to dtschema")
Cc: stable@vger.kernel.org
Signed-off-by: Shengjiu Wang <shengjiu.wang@nxp.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Link: https://patch.msgid.link/20260212021829.3244736-4-shengjiu.wang@nxp.com
Signed-off-by: Mark Brown <broonie@kernel.org>
52 lines
1.0 KiB
YAML
52 lines
1.0 KiB
YAML
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/sound/asahi-kasei,ak5558.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: AK5558 8 channel differential 32-bit delta-sigma ADC
|
|
|
|
maintainers:
|
|
- Junichi Wakasugi <wakasugi.jb@om.asahi-kasei.co.jp>
|
|
- Mihai Serban <mihai.serban@nxp.com>
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- asahi-kasei,ak5552
|
|
- asahi-kasei,ak5558
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
AVDD-supply:
|
|
description: A 1.8V supply that powers up the AVDD pin.
|
|
|
|
DVDD-supply:
|
|
description: A 1.2V supply that powers up the DVDD pin.
|
|
|
|
reset-gpios:
|
|
maxItems: 1
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
|
|
allOf:
|
|
- $ref: dai-common.yaml#
|
|
|
|
unevaluatedProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
i2c {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
ak5558: codec@10 {
|
|
compatible = "asahi-kasei,ak5558";
|
|
reg = <0x10>;
|
|
reset-gpios = <&gpio1 10 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|