[PATCH] disas/riscv: Fix the typo of inverted order of pmpaddr13 and pmpaddr14

Alvin Chang posted 1 patch 1 year, 2 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20230907084500.328-1-alvinga@andestech.com
Maintainers: Palmer Dabbelt <palmer@dabbelt.com>, Alistair Francis <Alistair.Francis@wdc.com>
disas/riscv.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH] disas/riscv: Fix the typo of inverted order of pmpaddr13 and pmpaddr14
Posted by Alvin Chang 1 year, 2 months ago
Fix the inverted order of pmpaddr13 and pmpaddr14 in csr_name().

Signed-off-by: Alvin Chang <alvinga@andestech.com>
---
 disas/riscv.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/disas/riscv.c b/disas/riscv.c
index 3873a69157..8e89e1d115 100644
--- a/disas/riscv.c
+++ b/disas/riscv.c
@@ -2116,8 +2116,8 @@ static const char *csr_name(int csrno)
     case 0x03ba: return "pmpaddr10";
     case 0x03bb: return "pmpaddr11";
     case 0x03bc: return "pmpaddr12";
-    case 0x03bd: return "pmpaddr14";
-    case 0x03be: return "pmpaddr13";
+    case 0x03bd: return "pmpaddr13";
+    case 0x03be: return "pmpaddr14";
     case 0x03bf: return "pmpaddr15";
     case 0x0780: return "mtohost";
     case 0x0781: return "mfromhost";
-- 
2.34.1
Re: [PATCH] disas/riscv: Fix the typo of inverted order of pmpaddr13 and pmpaddr14
Posted by Alistair Francis 1 year, 2 months ago
On Thu, Sep 7, 2023 at 6:47 PM Alvin Chang <vivahavey@gmail.com> wrote:
>
> Fix the inverted order of pmpaddr13 and pmpaddr14 in csr_name().
>
> Signed-off-by: Alvin Chang <alvinga@andestech.com>

Reviewed-by: Alistair Francis <alistair.francis@wdc.com>

Alistair

> ---
>  disas/riscv.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/disas/riscv.c b/disas/riscv.c
> index 3873a69157..8e89e1d115 100644
> --- a/disas/riscv.c
> +++ b/disas/riscv.c
> @@ -2116,8 +2116,8 @@ static const char *csr_name(int csrno)
>      case 0x03ba: return "pmpaddr10";
>      case 0x03bb: return "pmpaddr11";
>      case 0x03bc: return "pmpaddr12";
> -    case 0x03bd: return "pmpaddr14";
> -    case 0x03be: return "pmpaddr13";
> +    case 0x03bd: return "pmpaddr13";
> +    case 0x03be: return "pmpaddr14";
>      case 0x03bf: return "pmpaddr15";
>      case 0x0780: return "mtohost";
>      case 0x0781: return "mfromhost";
> --
> 2.34.1
>
>