diff options
author | Cryolitia PukNgae <cryolitia@uniontech.com> | 2025-08-22 18:28:33 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2025-08-24 22:40:59 +0100 |
commit | b1c99d5bd24ce0a1193d8476d83bf8c8bc633266 (patch) | |
tree | b3ccf44366a8605d887e1121ebbd8ef0e774b052 | |
parent | 1b237f190eb3d36f52dffe07a40b5eb210280e00 (diff) |
ASoC: codecs: idt821034: fix wrong log in idt821034_chip_direction_output()
Change `dir in` to `dir out`
Suggested-by: Jun Zhan <zhanjun@uniontech.com>
Signed-off-by: Cryolitia PukNgae <cryolitia@uniontech.com>
Acked-by: Herve Codina <herve.codina@bootlin.com>
Message-ID: <20250822-idt821034-v1-1-e2bfffbde56f@uniontech.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/codecs/idt821034.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/idt821034.c b/sound/soc/codecs/idt821034.c index 6738cf21983b..a03d4e5e7d14 100644 --- a/sound/soc/codecs/idt821034.c +++ b/sound/soc/codecs/idt821034.c @@ -1067,7 +1067,7 @@ static int idt821034_chip_direction_output(struct gpio_chip *c, unsigned int off ret = idt821034_set_slic_conf(idt821034, ch, slic_conf); if (ret) { - dev_err(&idt821034->spi->dev, "dir in gpio %d (%u, 0x%x) failed (%d)\n", + dev_err(&idt821034->spi->dev, "dir out gpio %d (%u, 0x%x) failed (%d)\n", offset, ch, mask, ret); } |