aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/memory/stm32_omm.c
diff options
context:
space:
mode:
authorColin Ian King <[email protected]>2025-05-09 10:44:58 +0000
committerKrzysztof Kozlowski <[email protected]>2025-05-12 06:32:08 +0000
commit9c03507fcd6feae37a94eff376a1aa79700dd54a (patch)
tree5d7264fd32b924cd0874e66be37047d69bc36d94 /drivers/memory/stm32_omm.c
parentMAINTAINERS: add entry for STM32 OCTO MEMORY MANAGER driver (diff)
downloadkernel-9c03507fcd6feae37a94eff376a1aa79700dd54a.tar.gz
kernel-9c03507fcd6feae37a94eff376a1aa79700dd54a.zip
memory: stm32: Fix spelling mistake "resset" -> "reset"
There is a spelling mistake in a dev_err message. Fix it. Signed-off-by: Colin Ian King <[email protected]> Link: https://lore.kernel.org/r/[email protected] Fixes: 8181d061dcff ("memory: Add STM32 Octo Memory Manager driver") Signed-off-by: Krzysztof Kozlowski <[email protected]>
Diffstat (limited to 'drivers/memory/stm32_omm.c')
-rw-r--r--drivers/memory/stm32_omm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/memory/stm32_omm.c b/drivers/memory/stm32_omm.c
index 166baed0738a..bef7cf4391d6 100644
--- a/drivers/memory/stm32_omm.c
+++ b/drivers/memory/stm32_omm.c
@@ -173,7 +173,7 @@ static int stm32_omm_disable_child(struct device *dev)
ret = reset_control_acquire(reset);
if (ret) {
stm32_omm_toggle_child_clock(dev, false);
- dev_err(dev, "Can not acquire resset %d\n", ret);
+ dev_err(dev, "Can not acquire reset %d\n", ret);
return ret;
}