diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2023-04-04 14:27:11 +0100 |
---|---|---|
committer | Song Gao <gaosong@loongson.cn> | 2023-05-06 11:19:50 +0800 |
commit | 725d7e763a802321e1bb303348afc551d564d31e (patch) | |
tree | 5221580d089aae76ebf6cbc592f3fe4a673c7f47 /hw | |
parent | c6c2fec4b95c1f574a8b1d045986ac88abbbc850 (diff) |
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>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/intc/loongarch_ipi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/intc/loongarch_ipi.c b/hw/intc/loongarch_ipi.c index aa4bf9eb74..bdba0f8107 100644 --- a/hw/intc/loongarch_ipi.c +++ b/hw/intc/loongarch_ipi.c @@ -50,7 +50,7 @@ static uint64_t loongarch_ipi_readl(void *opaque, hwaddr addr, unsigned size) 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; |