regulator: mt6358: Fix incorrect VCN33 sync error message

After syncing the enable status of VCN33_WIFI to VCN33_BT, the driver
will disable VCN33_WIFI. If it fails it will error out with a message.
However the error message incorrectly refers to VCN33_BT.

Fix the error message so that it correctly refers to VCN33_WIFI.

Suggested-by: Fei Shao <fshao@chromium.org>
Fixes: 65bae54e08c1 ("regulator: mt6358: Merge VCN33_* regulators")
Signed-off-by: Chen-Yu Tsai <wenst@chromium.org>
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Link: https://lore.kernel.org/r/20230721082903.2038975-4-wenst@chromium.org
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by Chen-Yu Tsai and committed by Mark Brown 67cb6088 649fee5a

Changed files
+1 -1
drivers
regulator
+1 -1
drivers/regulator/mt6358-regulator.c
··· 661 661 /* Disable VCN33_WIFI */ 662 662 ret = regmap_update_bits(mt6397->regmap, MT6358_LDO_VCN33_CON0_1, BIT(0), 0); 663 663 if (ret) { 664 - dev_err(dev, "Failed to disable VCN33_BT\n"); 664 + dev_err(dev, "Failed to disable VCN33_WIFI\n"); 665 665 return ret; 666 666 } 667 667