mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
hw/intc/loongson_ipi: Rename LoongsonIPI -> LoongsonIPIState
We'll have to add LoongsonIPIClass in few commits, so rename LoongsonIPI as LoongsonIPIState for clarity. Signed-off-by: Bibo Mao <maobibo@loongson.cn> [PMD: Extracted from bigger commit, added commit description] Co-Developed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Bibo Mao <maobibo@loongson.cn> Tested-by: Bibo Mao <maobibo@loongson.cn> Acked-by: Song Gao <gaosong@loongson.cn> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Jiaxun Yang <jiaxun.yang@flygoat.com> Tested-by: Jiaxun Yang <jiaxun.yang@flygoat.com> Message-Id: <20240805180622.21001-2-philmd@linaro.org>
This commit is contained in:
parent
e7207a9971
commit
40a0815e31
2 changed files with 11 additions and 11 deletions
|
@ -31,10 +31,10 @@
|
|||
#define IPI_MBX_NUM 4
|
||||
|
||||
#define TYPE_LOONGSON_IPI "loongson_ipi"
|
||||
OBJECT_DECLARE_SIMPLE_TYPE(LoongsonIPI, LOONGSON_IPI)
|
||||
OBJECT_DECLARE_SIMPLE_TYPE(LoongsonIPIState, LOONGSON_IPI)
|
||||
|
||||
typedef struct IPICore {
|
||||
LoongsonIPI *ipi;
|
||||
LoongsonIPIState *ipi;
|
||||
MemoryRegion *ipi_mmio_mem;
|
||||
uint32_t status;
|
||||
uint32_t en;
|
||||
|
@ -45,7 +45,7 @@ typedef struct IPICore {
|
|||
qemu_irq irq;
|
||||
} IPICore;
|
||||
|
||||
struct LoongsonIPI {
|
||||
struct LoongsonIPIState {
|
||||
SysBusDevice parent_obj;
|
||||
MemoryRegion ipi_iocsr_mem;
|
||||
MemoryRegion ipi64_iocsr_mem;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue