All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] target-mips/cpu.h: Fix spell error
@ 2015-11-25  7:08 Dongxue Zhang
  0 siblings, 0 replies; 3+ messages in thread
From: Dongxue Zhang @ 2015-11-25  7:08 UTC (permalink / raw)
  To: QEMU Developers

[-- Attachment #1: Type: text/plain, Size: 590 bytes --]

CP0IntCtl_IPPC1, the last letter should be 'i', not 'one'.

Signed-off-by: Dongxue Zhang <elta.era@gmail.com>
---
 target-mips/cpu.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target-mips/cpu.h b/target-mips/cpu.h
index 89c01f7..17817c3 100644
--- a/target-mips/cpu.h
+++ b/target-mips/cpu.h
@@ -358,7 +358,7 @@ struct CPUMIPSState {
 #define CP0St_IE    0
     int32_t CP0_IntCtl;
 #define CP0IntCtl_IPTI 29
-#define CP0IntCtl_IPPC1 26
+#define CP0IntCtl_IPPCI 26
 #define CP0IntCtl_VS 5
     int32_t CP0_SRSCtl;
 #define CP0SRSCtl_HSS 26
-- 
2.4.9 (Apple Git-60)

[-- Attachment #2: 0001-Mips-Fix-spell-error.patch --]
[-- Type: application/octet-stream, Size: 795 bytes --]

From b8cb8b6ffef6a9bb90b20b7aa2032b0fba62d441 Mon Sep 17 00:00:00 2001
From: Dongxue Zhang <elta.era@gmail.com>
Date: Wed, 25 Nov 2015 14:47:35 +0800
Subject: [PATCH] [target-mips/cpu.h] Fix spell error

CP0IntCtl_IPPC1, the last letter should be 'i', not 'one'.

Signed-off-by: Dongxue Zhang <elta.era@gmail.com>
---
 target-mips/cpu.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target-mips/cpu.h b/target-mips/cpu.h
index 89c01f7..17817c3 100644
--- a/target-mips/cpu.h
+++ b/target-mips/cpu.h
@@ -358,7 +358,7 @@ struct CPUMIPSState {
 #define CP0St_IE    0
     int32_t CP0_IntCtl;
 #define CP0IntCtl_IPTI 29
-#define CP0IntCtl_IPPC1 26
+#define CP0IntCtl_IPPCI 26
 #define CP0IntCtl_VS 5
     int32_t CP0_SRSCtl;
 #define CP0SRSCtl_HSS 26
-- 
2.4.9 (Apple Git-60)


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

* [Qemu-devel] [PATCH] target-mips/cpu.h: Fix spell error
@ 2015-11-25 12:57 Dongxue Zhang
  2015-11-25 13:09 ` Leon Alrae
  0 siblings, 1 reply; 3+ messages in thread
From: Dongxue Zhang @ 2015-11-25 12:57 UTC (permalink / raw)
  To: QEMU Developers; +Cc: leon.alrae, Aurelien Jarno

CP0IntCtl_IPPC1, the last letter should be 'i', not 'one'.

Signed-off-by: Dongxue Zhang <elta.era@gmail.com>
---
 target-mips/cpu.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target-mips/cpu.h b/target-mips/cpu.h
index 89c01f7..17817c3 100644
--- a/target-mips/cpu.h
+++ b/target-mips/cpu.h
@@ -358,7 +358,7 @@ struct CPUMIPSState {
 #define CP0St_IE    0
     int32_t CP0_IntCtl;
 #define CP0IntCtl_IPTI 29
-#define CP0IntCtl_IPPC1 26
+#define CP0IntCtl_IPPCI 26
 #define CP0IntCtl_VS 5
     int32_t CP0_SRSCtl;
 #define CP0SRSCtl_HSS 26
-- 
2.4.9 (Apple Git-60)

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

* Re: [Qemu-devel] [PATCH] target-mips/cpu.h: Fix spell error
  2015-11-25 12:57 [Qemu-devel] [PATCH] target-mips/cpu.h: Fix spell error Dongxue Zhang
@ 2015-11-25 13:09 ` Leon Alrae
  0 siblings, 0 replies; 3+ messages in thread
From: Leon Alrae @ 2015-11-25 13:09 UTC (permalink / raw)
  To: Dongxue Zhang, QEMU Developers; +Cc: Aurelien Jarno

On 25/11/15 12:57, Dongxue Zhang wrote:
> CP0IntCtl_IPPC1, the last letter should be 'i', not 'one'.
> 
> Signed-off-by: Dongxue Zhang <elta.era@gmail.com>
> ---
>  target-mips/cpu.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/target-mips/cpu.h b/target-mips/cpu.h
> index 89c01f7..17817c3 100644
> --- a/target-mips/cpu.h
> +++ b/target-mips/cpu.h
> @@ -358,7 +358,7 @@ struct CPUMIPSState {
>  #define CP0St_IE    0
>      int32_t CP0_IntCtl;
>  #define CP0IntCtl_IPTI 29
> -#define CP0IntCtl_IPPC1 26
> +#define CP0IntCtl_IPPCI 26
>  #define CP0IntCtl_VS 5
>      int32_t CP0_SRSCtl;
>  #define CP0SRSCtl_HSS 26
> 

Thanks for the patch. I've applied it to post-2.5 target-mips queue.

Regards,
Leon

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

end of thread, other threads:[~2015-11-25 13:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-25 12:57 [Qemu-devel] [PATCH] target-mips/cpu.h: Fix spell error Dongxue Zhang
2015-11-25 13:09 ` Leon Alrae
  -- strict thread matches above, loose matches on Subject: below --
2015-11-25  7:08 Dongxue Zhang

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.