diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2024-11-02 10:27:51 +0100 |
---|---|---|
committer | Kevin Hilman <khilman@baylibre.com> | 2024-12-06 12:55:24 -0800 |
commit | 19ee9e4cded46927d9cf6eaac3695dab17f86241 (patch) | |
tree | e8f7b9d437603511ebf2644c35c7e10c1710316d | |
parent | 40384c840ea1944d7c5a392e8975ed088ecf0b37 (diff) |
ARM: OMAP2+: Fix a typo
A 'a' is missing in "powerdomin".
Add it.
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Link: https://lore.kernel.org/r/ec20fd5c347bf74963532e95282f850d209d84d5.1730539664.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
-rw-r--r-- | arch/arm/mach-omap2/powerdomain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/powerdomain.c b/arch/arm/mach-omap2/powerdomain.c index 2441d96b7144..a4785302b7ae 100644 --- a/arch/arm/mach-omap2/powerdomain.c +++ b/arch/arm/mach-omap2/powerdomain.c @@ -523,7 +523,7 @@ int pwrdm_get_mem_bank_count(struct powerdomain *pwrdm) * Set the powerdomain @pwrdm's next power state to @pwrst. The powerdomain * may not enter this state immediately if the preconditions for this state * have not been satisfied. Returns -EINVAL if the powerdomain pointer is - * null or if the power state is invalid for the powerdomin, or returns 0 + * null or if the power state is invalid for the powerdomain, or returns 0 * upon success. */ int pwrdm_set_next_pwrst(struct powerdomain *pwrdm, u8 pwrst) |