From: Yuan Tan Date: Sun, 23 Jul 2023 16:51:55 +0000 (+0800) Subject: riscv: alternatives: fix a typo in comment X-Git-Tag: v6.6.17~4041^2~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=174e8ac0272d54a9c1cc23185665f715c36620ad;p=platform%2Fkernel%2Flinux-rpi.git riscv: alternatives: fix a typo in comment In the usage of ALTERNATIVE, "always" is misspelled as "alwyas". Signed-off-by: Yuan Tan Reviewed-by: Conor Dooley Link: https://lore.kernel.org/r/20230723165155.4896-1-tanyuan@tinylab.org Signed-off-by: Palmer Dabbelt --- diff --git a/arch/riscv/include/asm/alternative-macros.h b/arch/riscv/include/asm/alternative-macros.h index b8c55fb..721ec27 100644 --- a/arch/riscv/include/asm/alternative-macros.h +++ b/arch/riscv/include/asm/alternative-macros.h @@ -146,7 +146,7 @@ * vendor_id: The CPU vendor ID. * patch_id: The patch ID (erratum ID or cpufeature ID). * CONFIG_k: The Kconfig of this patch ID. When Kconfig is disabled, the old - * content will alwyas be executed. + * content will always be executed. */ #define ALTERNATIVE(old_content, new_content, vendor_id, patch_id, CONFIG_k) \ _ALTERNATIVE_CFG(old_content, new_content, vendor_id, patch_id, CONFIG_k)