All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] LoongArch: Fix Chinese comma
@ 2023-02-01  9:29 Jinyang He
  2023-02-01 11:09 ` Xi Ruoyao
  0 siblings, 1 reply; 3+ messages in thread
From: Jinyang He @ 2023-02-01  9:29 UTC (permalink / raw)
  To: Huacai Chen; +Cc: WANG Xuerui, loongarch, linux-kernel

Fix Chinese comma in cpu.h.

Signed-off-by: Jinyang He <hejinyang@loongson.cn>
---
 arch/loongarch/include/asm/cpu.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/loongarch/include/asm/cpu.h b/arch/loongarch/include/asm/cpu.h
index 754f28506791..c3da91759472 100644
--- a/arch/loongarch/include/asm/cpu.h
+++ b/arch/loongarch/include/asm/cpu.h
@@ -36,7 +36,7 @@
 
 #define PRID_SERIES_LA132	0x8000  /* Loongson 32bit */
 #define PRID_SERIES_LA264	0xa000  /* Loongson 64bit, 2-issue */
-#define PRID_SERIES_LA364	0xb000  /* Loongson 64bit,3-issue */
+#define PRID_SERIES_LA364	0xb000  /* Loongson 64bit, 3-issue */
 #define PRID_SERIES_LA464	0xc000  /* Loongson 64bit, 4-issue */
 #define PRID_SERIES_LA664	0xd000  /* Loongson 64bit, 6-issue */
 
-- 
2.34.3


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

* Re: [PATCH] LoongArch: Fix Chinese comma
  2023-02-01  9:29 [PATCH] LoongArch: Fix Chinese comma Jinyang He
@ 2023-02-01 11:09 ` Xi Ruoyao
  2023-02-02  9:22   ` Huacai Chen
  0 siblings, 1 reply; 3+ messages in thread
From: Xi Ruoyao @ 2023-02-01 11:09 UTC (permalink / raw)
  To: Jinyang He, Huacai Chen; +Cc: WANG Xuerui, loongarch, linux-kernel

On Wed, 2023-02-01 at 17:29 +0800, Jinyang He wrote:
> Fix Chinese comma in cpu.h.
> 
> Signed-off-by: Jinyang He <hejinyang@loongson.cn>

This is obvious, while I'm wondering if we have a "-Werror=something"
compiler option which can catch non-ASCII characters immediately.

> ---
>  arch/loongarch/include/asm/cpu.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/loongarch/include/asm/cpu.h
> b/arch/loongarch/include/asm/cpu.h
> index 754f28506791..c3da91759472 100644
> --- a/arch/loongarch/include/asm/cpu.h
> +++ b/arch/loongarch/include/asm/cpu.h
> @@ -36,7 +36,7 @@
>  
>  #define PRID_SERIES_LA132      0x8000  /* Loongson 32bit */
>  #define PRID_SERIES_LA264      0xa000  /* Loongson 64bit, 2-issue */
> -#define PRID_SERIES_LA364      0xb000  /* Loongson 64bit,3-issue */
> +#define PRID_SERIES_LA364      0xb000  /* Loongson 64bit, 3-issue */
>  #define PRID_SERIES_LA464      0xc000  /* Loongson 64bit, 4-issue */
>  #define PRID_SERIES_LA664      0xd000  /* Loongson 64bit, 6-issue */
>  

-- 
Xi Ruoyao <xry111@xry111.site>
School of Aerospace Science and Technology, Xidian University

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

* Re: [PATCH] LoongArch: Fix Chinese comma
  2023-02-01 11:09 ` Xi Ruoyao
@ 2023-02-02  9:22   ` Huacai Chen
  0 siblings, 0 replies; 3+ messages in thread
From: Huacai Chen @ 2023-02-02  9:22 UTC (permalink / raw)
  To: Xi Ruoyao; +Cc: Jinyang He, WANG Xuerui, loongarch, linux-kernel

Queued, thanks.

Huacai

On Wed, Feb 1, 2023 at 7:09 PM Xi Ruoyao <xry111@xry111.site> wrote:
>
> On Wed, 2023-02-01 at 17:29 +0800, Jinyang He wrote:
> > Fix Chinese comma in cpu.h.
> >
> > Signed-off-by: Jinyang He <hejinyang@loongson.cn>
>
> This is obvious, while I'm wondering if we have a "-Werror=something"
> compiler option which can catch non-ASCII characters immediately.
>
> > ---
> >  arch/loongarch/include/asm/cpu.h | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/arch/loongarch/include/asm/cpu.h
> > b/arch/loongarch/include/asm/cpu.h
> > index 754f28506791..c3da91759472 100644
> > --- a/arch/loongarch/include/asm/cpu.h
> > +++ b/arch/loongarch/include/asm/cpu.h
> > @@ -36,7 +36,7 @@
> >
> >  #define PRID_SERIES_LA132      0x8000  /* Loongson 32bit */
> >  #define PRID_SERIES_LA264      0xa000  /* Loongson 64bit, 2-issue */
> > -#define PRID_SERIES_LA364      0xb000  /* Loongson 64bit,3-issue */
> > +#define PRID_SERIES_LA364      0xb000  /* Loongson 64bit, 3-issue */
> >  #define PRID_SERIES_LA464      0xc000  /* Loongson 64bit, 4-issue */
> >  #define PRID_SERIES_LA664      0xd000  /* Loongson 64bit, 6-issue */
> >
>
> --
> Xi Ruoyao <xry111@xry111.site>
> School of Aerospace Science and Technology, Xidian University

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

end of thread, other threads:[~2023-02-02  9:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-01  9:29 [PATCH] LoongArch: Fix Chinese comma Jinyang He
2023-02-01 11:09 ` Xi Ruoyao
2023-02-02  9:22   ` Huacai Chen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.