diff options
| author | Peter Maydell | 2020-11-14 12:22:07 +0100 |
|---|---|---|
| committer | Peter Maydell | 2020-11-14 12:22:07 +0100 |
| commit | b50ea0d54bbca7d440315c3d0c0f7a4d6537b180 (patch) | |
| tree | 77551af72cda7c437999ddfe2255447905e33501 /include | |
| parent | Merge remote-tracking branch 'remotes/dgilbert/tags/pull-hmp-20201113' into s... (diff) | |
| parent | intc/ibex_plic: Ensure we don't loose interrupts (diff) | |
| download | qemu-b50ea0d54bbca7d440315c3d0c0f7a4d6537b180.tar.gz qemu-b50ea0d54bbca7d440315c3d0c0f7a4d6537b180.tar.xz qemu-b50ea0d54bbca7d440315c3d0c0f7a4d6537b180.zip | |
Merge remote-tracking branch 'remotes/alistair/tags/pull-riscv-to-apply-20201113-1' into staging
Two small additional fixes for the Ibex PLIC.
# gpg: Signature made Sat 14 Nov 2020 05:44:22 GMT
# gpg: using RSA key F6C4AC46D4934868D3B8CE8F21E10D29DF977054
# gpg: Good signature from "Alistair Francis <alistair@alistair23.me>" [full]
# Primary key fingerprint: F6C4 AC46 D493 4868 D3B8 CE8F 21E1 0D29 DF97 7054
* remotes/alistair/tags/pull-riscv-to-apply-20201113-1:
intc/ibex_plic: Ensure we don't loose interrupts
intc/ibex_plic: Fix some typos in the comments
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/hw/intc/ibex_plic.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/intc/ibex_plic.h b/include/hw/intc/ibex_plic.h index 37f03356b3..7fc495db99 100644 --- a/include/hw/intc/ibex_plic.h +++ b/include/hw/intc/ibex_plic.h @@ -33,6 +33,7 @@ struct IbexPlicState { MemoryRegion mmio; uint32_t *pending; + uint32_t *hidden_pending; uint32_t *claimed; uint32_t *source; uint32_t *priority; |
