From 8ec81ca4d4dba8c77e6fc2a26b4f35d3fa52f05e Mon Sep 17 00:00:00 2001 From: SeokYeon Hwang Date: Tue, 29 Oct 2013 11:35:12 +0900 Subject: [PATCH] Fix compilation error on maru_board.c A xen_hvm_init() function prototype is modified. Change-Id: I6ec43199ddb65db591bedea8c89db6d46010daf0 Signed-off-by: SeokYeon Hwang --- tizen/src/hw/maru_board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.34.1