diff options
| author | Bibo Mao <maobibo@loongson.cn> | 2025-05-07 10:37:52 +0800 |
|---|---|---|
| committer | Song Gao <gaosong@loongson.cn> | 2025-05-14 15:54:31 +0800 |
| commit | ce5efc2f44d1a2809c4adb2bad2083db29a03c71 (patch) | |
| tree | 183886bd2818abc755e5b0dc4a9b49eaa4a24dc6 /include/hw/intc | |
| parent | ba23cce0dcc75d2211f875e758305e3636e7c0a4 (diff) | |
| download | focaccia-qemu-ce5efc2f44d1a2809c4adb2bad2083db29a03c71.tar.gz focaccia-qemu-ce5efc2f44d1a2809c4adb2bad2083db29a03c71.zip | |
hw/intc/loongarch_pch: Rename memory region iomem32_low with iomem
Rename memory region iomem32_low with iomem, also change ops name as follows: loongarch_pch_pic_reg32_low_ops --> loongarch_pch_pic_ops loongarch_pch_pic_low_readw --> loongarch_pch_pic_read loongarch_pch_pic_low_writew --> loongarch_pch_pic_write Signed-off-by: Bibo Mao <maobibo@loongson.cn> Reviewed-by: Song Gao <gaosong@loongson.cn> Message-Id: <20250507023754.1877445-3-maobibo@loongson.cn> Signed-off-by: Song Gao <gaosong@loongson.cn>
Diffstat (limited to 'include/hw/intc')
| -rw-r--r-- | include/hw/intc/loongarch_pic_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/intc/loongarch_pic_common.h b/include/hw/intc/loongarch_pic_common.h index 7a9a2bdd46..dc03056227 100644 --- a/include/hw/intc/loongarch_pic_common.h +++ b/include/hw/intc/loongarch_pic_common.h @@ -65,7 +65,7 @@ struct LoongArchPICCommonState { uint8_t route_entry[64]; /* 0x100 - 0x138 */ uint8_t htmsi_vector[64]; /* 0x200 - 0x238 */ - MemoryRegion iomem32_low; + MemoryRegion iomem; MemoryRegion iomem32_high; MemoryRegion iomem8; unsigned int irq_num; |