diff options
author | Bin Meng <bmeng@tinylab.org> | 2022-12-11 11:08:19 +0800 |
---|---|---|
committer | Alistair Francis <alistair.francis@wdc.com> | 2023-01-06 10:42:55 +1000 |
commit | 2904dc1c1e7895a65a2ac18ea4bb1042d6dced50 (patch) | |
tree | 8426321dd0c1afb88d2c5a42008c6a93e8aa439d /hw/intc | |
parent | 391eafebbc76a461c6ec6f10b0bcd9772e43b8f8 (diff) | |
download | qemu-2904dc1c1e7895a65a2ac18ea4bb1042d6dced50.zip qemu-2904dc1c1e7895a65a2ac18ea4bb1042d6dced50.tar.gz qemu-2904dc1c1e7895a65a2ac18ea4bb1042d6dced50.tar.bz2 |
hw/intc: sifive_plic: Drop PLICMode_H
H-mode has been removed since priv spec 1.10. Drop it.
Signed-off-by: Bin Meng <bmeng@tinylab.org>
Reviewed-by: Wilfred Mallawa <wilfred.mallawa@wdc.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-Id: <20221211030829.802437-6-bmeng@tinylab.org>
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Diffstat (limited to 'hw/intc')
-rw-r--r-- | hw/intc/sifive_plic.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/intc/sifive_plic.c b/hw/intc/sifive_plic.c index 0c76965..936dcf7 100644 --- a/hw/intc/sifive_plic.c +++ b/hw/intc/sifive_plic.c @@ -42,7 +42,6 @@ static PLICMode char_to_mode(char c) switch (c) { case 'U': return PLICMode_U; case 'S': return PLICMode_S; - case 'H': return PLICMode_H; case 'M': return PLICMode_M; default: error_report("plic: invalid mode '%c'", c); |