mirror of https://github.com/xemu-project/xemu.git
hw/intc: don't use target_ulong for LoongArch ipi
The calling function is already working with hwaddr and uint64_t so lets avoid bringing target_ulong in if we don't need to. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Song Gao <gaosong@loongson.cn> Message-Id: <20230404132711.2563638-1-alex.bennee@linaro.org> Signed-off-by: Song Gao <gaosong@loongson.cn>
This commit is contained in:
parent
c6c2fec4b9
commit
725d7e763a
|
@ -50,7 +50,7 @@ static uint64_t loongarch_ipi_readl(void *opaque, hwaddr addr, unsigned size)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void send_ipi_data(CPULoongArchState *env, target_ulong val, target_ulong addr)
|
static void send_ipi_data(CPULoongArchState *env, uint64_t val, hwaddr addr)
|
||||||
{
|
{
|
||||||
int i, mask = 0, data = 0;
|
int i, mask = 0, data = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue