[PATCH 2/3] ASoC: ak4458: Fix the supply names

From: Shengjiu Wang

Date: Wed Feb 11 2026 - 04:34:34 EST


According to the binding document, the supply name characters are
lowercase.

Fixes: 7e3096e8f823 ("ASoC: ak4458: Add regulator support")
Cc: stable@xxxxxxxxxxxxxxx
Signed-off-by: Shengjiu Wang <shengjiu.wang@xxxxxxx>
---
sound/soc/codecs/ak4458.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/soc/codecs/ak4458.c b/sound/soc/codecs/ak4458.c
index f81cd8cebdd8..bfd4c039bbb7 100644
--- a/sound/soc/codecs/ak4458.c
+++ b/sound/soc/codecs/ak4458.c
@@ -24,8 +24,8 @@

#define AK4458_NUM_SUPPLIES 2
static const char *ak4458_supply_names[AK4458_NUM_SUPPLIES] = {
- "DVDD",
- "AVDD",
+ "dvdd",
+ "avdd",
};

enum ak4458_type {
--
2.34.1