public inbox for linux-riscv@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH] riscv: alternatives: fix a typo in comment
@ 2023-07-23 16:51 Yuan Tan
  2023-07-24  7:46 ` Conor Dooley
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Yuan Tan @ 2023-07-23 16:51 UTC (permalink / raw)
  To: palmer, vincent.chen; +Cc: linux-riscv, linux-kernel, falcon, Yuan Tan

In the usage of ALTERNATIVE, "always" is misspelled as "alwyas".

Signed-off-by: Yuan Tan <tanyuan@tinylab.org>
---
 arch/riscv/include/asm/alternative-macros.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/riscv/include/asm/alternative-macros.h b/arch/riscv/include/asm/alternative-macros.h
index b8c55fb3ab2c..721ec275ce57 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)
-- 
2.34.1


_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] riscv: alternatives: fix a typo in comment
  2023-07-23 16:51 [PATCH] riscv: alternatives: fix a typo in comment Yuan Tan
@ 2023-07-24  7:46 ` Conor Dooley
  2023-08-09 14:11 ` Palmer Dabbelt
  2023-08-09 14:20 ` patchwork-bot+linux-riscv
  2 siblings, 0 replies; 4+ messages in thread
From: Conor Dooley @ 2023-07-24  7:46 UTC (permalink / raw)
  To: Yuan Tan; +Cc: palmer, vincent.chen, linux-riscv, linux-kernel, falcon


[-- Attachment #1.1: Type: text/plain, Size: 257 bytes --]

On Mon, Jul 24, 2023 at 12:51:55AM +0800, Yuan Tan wrote:
> In the usage of ALTERNATIVE, "always" is misspelled as "alwyas".
> 
> Signed-off-by: Yuan Tan <tanyuan@tinylab.org>

Reviewed-by: Conor Dooley <conor.dooley@microchip.com>

Thanks,
Conor.

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

[-- Attachment #2: Type: text/plain, Size: 161 bytes --]

_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] riscv: alternatives: fix a typo in comment
  2023-07-23 16:51 [PATCH] riscv: alternatives: fix a typo in comment Yuan Tan
  2023-07-24  7:46 ` Conor Dooley
@ 2023-08-09 14:11 ` Palmer Dabbelt
  2023-08-09 14:20 ` patchwork-bot+linux-riscv
  2 siblings, 0 replies; 4+ messages in thread
From: Palmer Dabbelt @ 2023-08-09 14:11 UTC (permalink / raw)
  To: Palmer Dabbelt, vincent.chen, Yuan Tan; +Cc: linux-riscv, linux-kernel, falcon


On Mon, 24 Jul 2023 00:51:55 +0800, Yuan Tan wrote:
> In the usage of ALTERNATIVE, "always" is misspelled as "alwyas".
> 
> 

Applied, thanks!

[1/1] riscv: alternatives: fix a typo in comment
      https://git.kernel.org/palmer/c/174e8ac0272d

Best regards,
-- 
Palmer Dabbelt <palmer@rivosinc.com>


_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] riscv: alternatives: fix a typo in comment
  2023-07-23 16:51 [PATCH] riscv: alternatives: fix a typo in comment Yuan Tan
  2023-07-24  7:46 ` Conor Dooley
  2023-08-09 14:11 ` Palmer Dabbelt
@ 2023-08-09 14:20 ` patchwork-bot+linux-riscv
  2 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+linux-riscv @ 2023-08-09 14:20 UTC (permalink / raw)
  To: Yuan Tan; +Cc: linux-riscv, palmer, vincent.chen, linux-kernel, falcon

Hello:

This patch was applied to riscv/linux.git (for-next)
by Palmer Dabbelt <palmer@rivosinc.com>:

On Mon, 24 Jul 2023 00:51:55 +0800 you wrote:
> In the usage of ALTERNATIVE, "always" is misspelled as "alwyas".
> 
> Signed-off-by: Yuan Tan <tanyuan@tinylab.org>
> ---
>  arch/riscv/include/asm/alternative-macros.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Here is the summary with links:
  - riscv: alternatives: fix a typo in comment
    https://git.kernel.org/riscv/c/174e8ac0272d

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-08-09 14:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-23 16:51 [PATCH] riscv: alternatives: fix a typo in comment Yuan Tan
2023-07-24  7:46 ` Conor Dooley
2023-08-09 14:11 ` Palmer Dabbelt
2023-08-09 14:20 ` patchwork-bot+linux-riscv

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox