[PATCH][next] regulator: mt6370: Fix spelling mistake in mt6370_regualtor_register

Colin Ian King posted 1 patch 4 months, 4 weeks ago
drivers/regulator/mt6370-regulator.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH][next] regulator: mt6370: Fix spelling mistake in mt6370_regualtor_register
Posted by Colin Ian King 4 months, 4 weeks ago
The function name mt6370_regualtor_register contains a spelling mistake,
fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 drivers/regulator/mt6370-regulator.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/regulator/mt6370-regulator.c b/drivers/regulator/mt6370-regulator.c
index 27cb32b726e0..c2cea904b0ca 100644
--- a/drivers/regulator/mt6370-regulator.c
+++ b/drivers/regulator/mt6370-regulator.c
@@ -320,7 +320,7 @@ static int mt6370_regulator_irq_register(struct mt6370_priv *priv)
 	return 0;
 }
 
-static int mt6370_regualtor_register(struct mt6370_priv *priv)
+static int mt6370_regulator_register(struct mt6370_priv *priv)
 {
 	struct regulator_dev *rdev;
 	struct regulator_config cfg = {};
@@ -363,7 +363,7 @@ static int mt6370_regulator_probe(struct platform_device *pdev)
 		return -ENODEV;
 	}
 
-	ret = mt6370_regualtor_register(priv);
+	ret = mt6370_regulator_register(priv);
 	if (ret)
 		return ret;
 
-- 
2.50.0
Re: [PATCH][next] regulator: mt6370: Fix spelling mistake in mt6370_regualtor_register
Posted by Mark Brown 4 months, 3 weeks ago
On Thu, 24 Jul 2025 12:48:32 +0100, Colin Ian King wrote:
> The function name mt6370_regualtor_register contains a spelling mistake,
> fix it.
> 
> 

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git for-next

Thanks!

[1/1] regulator: mt6370: Fix spelling mistake in mt6370_regualtor_register
      commit: 0bd042ae771d61ef7ccd5882f7aeca59a25f71d9

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark