From: SeokYeon Hwang Date: Tue, 29 Oct 2013 02:35:12 +0000 (+0900) Subject: Fix compilation error on maru_board.c X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~616 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=13f252fd1e3e90d0f57329bcfa78d9087b96cd2c;p=sdk%2Femulator%2Fqemu.git Fix compilation error on maru_board.c A xen_hvm_init() function prototype is modified. Change-Id: I6ec43199ddb65db591bedea8c89db6d46010daf0 Signed-off-by: SeokYeon Hwang --- 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); }