diff options
| author | Colin Ian King <[email protected]> | 2025-05-09 10:44:58 +0000 |
|---|---|---|
| committer | Krzysztof Kozlowski <[email protected]> | 2025-05-12 06:32:08 +0000 |
| commit | 9c03507fcd6feae37a94eff376a1aa79700dd54a (patch) | |
| tree | 5d7264fd32b924cd0874e66be37047d69bc36d94 /drivers/memory/stm32_omm.c | |
| parent | MAINTAINERS: add entry for STM32 OCTO MEMORY MANAGER driver (diff) | |
| download | kernel-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.c | 2 |
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; } |
