[PATCH 3/3] ASoC: ak5558: Fix the supply names
From: Shengjiu Wang
Date: Wed Feb 11 2026 - 04:34:37 EST
According to the binding document, the supply name characters are
lowercase.
Fixes: 2ff6d5a108c6 ("ASoC: ak5558: Add regulator support")
Cc: stable@xxxxxxxxxxxxxxx
Signed-off-by: Shengjiu Wang <shengjiu.wang@xxxxxxx>
---
sound/soc/codecs/ak5558.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sound/soc/codecs/ak5558.c b/sound/soc/codecs/ak5558.c
index 73684fc5beb1..48a690d81047 100644
--- a/sound/soc/codecs/ak5558.c
+++ b/sound/soc/codecs/ak5558.c
@@ -31,8 +31,8 @@ enum ak555x_type {
#define AK5558_NUM_SUPPLIES 2
static const char *ak5558_supply_names[AK5558_NUM_SUPPLIES] = {
- "DVDD",
- "AVDD",
+ "dvdd",
+ "avdd",
};
/* AK5558 Codec Private Data */
--
2.34.1