]> git.proxmox.com Git - mirror_qemu.git/commit - target-arm/helper.c
target-arm: Fix incorrect type for value argument to write_raw_cp_reg
authorPeter Maydell <peter.maydell@linaro.org>
Thu, 20 Feb 2014 10:35:54 +0000 (10:35 +0000)
committerPeter Maydell <peter.maydell@linaro.org>
Thu, 20 Feb 2014 10:35:54 +0000 (10:35 +0000)
commit7900e9f1f963184967594f4518c97ea682a9605f
tree3abaf51614a491ca532d76ebc7c7f533bb75c091
parent59a1c327d72683e80fa1b886d42a3a5c17729484
target-arm: Fix incorrect type for value argument to write_raw_cp_reg

The write_raw_cp_reg's value argument should be a uint64_t, since
that's what all its callers hand it and what all the functions it
calls take. A (harmless) typo meant we were accidentally declaring
it as int64_t.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
target-arm/helper.c