summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeokYeon Hwang <syeon.hwang@samsung.com>2013-10-29 11:35:12 +0900
committerSeokYeon Hwang <syeon.hwang@samsung.com>2013-10-29 11:35:12 +0900
commit8ec81ca4d4dba8c77e6fc2a26b4f35d3fa52f05e (patch)
tree5fbd19f48d8a92a6918693de4812456e08f7b080
parent77b108b10c5b2cc5c28a644e91df0a60bc2177c7 (diff)
downloadqemu-tizen_qemu_1.6.tar.gz
qemu-tizen_qemu_1.6.tar.bz2
qemu-tizen_qemu_1.6.zip
Fix compilation error on maru_board.ctizen_qemu_1.6
A xen_hvm_init() function prototype is modified. Change-Id: I6ec43199ddb65db591bedea8c89db6d46010daf0 Signed-off-by: SeokYeon Hwang <syeon.hwang@samsung.com>
-rw-r--r--tizen/src/hw/maru_board.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tizen/src/hw/maru_board.c b/tizen/src/hw/maru_board.c
index 3058c6d470..d0cc541444 100644
--- a/tizen/src/hw/maru_board.c
+++ b/tizen/src/hw/maru_board.c
@@ -144,7 +144,7 @@ static void maru_x86_machine_init(MemoryRegion *system_memory,
#endif
struct winsys_interface *vigs_wsi = NULL;
- if (xen_enabled() && xen_hvm_init() != 0) {
+ if (xen_enabled() && xen_hvm_init(&ram_memory) != 0) {
fprintf(stderr, "xen hardware virtual machine initialisation failed\n");
exit(1);
}