From: SeokYeon Hwang Date: Wed, 23 Apr 2014 01:10:54 +0000 (+0900) Subject: build: fix compilation error X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~386^2~37 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=50d7a662b3d6e6e9d256b78ecf28d03d8be6944d;p=sdk%2Femulator%2Fqemu.git build: fix compilation error Some header file is renamed. Some function prototype is modified. Change-Id: I4100279f3366dac0f40a2319e0b933dd92398b34 Signed-off-by: SeokYeon Hwang --- diff --git a/tizen/src/hw/maru_board.c b/tizen/src/hw/maru_board.c index 9fb64cae7c..12c10c18c7 100644 --- a/tizen/src/hw/maru_board.c +++ b/tizen/src/hw/maru_board.c @@ -126,7 +126,7 @@ static void maru_device_init(void) #endif if (enable_vigs || enable_yagl) { - render_queue = work_queue_create(); + render_queue = work_queue_create("render_queue"); } if (enable_vigs) { diff --git a/tizen/src/hw/maru_brightness.c b/tizen/src/hw/maru_brightness.c index b65e15d59e..30e8e38a15 100644 --- a/tizen/src/hw/maru_brightness.c +++ b/tizen/src/hw/maru_brightness.c @@ -216,7 +216,6 @@ static void brightness_classinit(ObjectClass *klass, void *data) { PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); - k->no_hotplug = 1; k->init = brightness_initfn; k->exit = brightness_exitfn; } diff --git a/tizen/src/hw/maru_overlay.c b/tizen/src/hw/maru_overlay.c index 960b0cfd2c..5f5d807f58 100644 --- a/tizen/src/hw/maru_overlay.c +++ b/tizen/src/hw/maru_overlay.c @@ -264,7 +264,6 @@ static void overlay_classinit(ObjectClass *klass, void *data) DeviceClass *dc = DEVICE_CLASS(klass); PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); - k->no_hotplug = 1; k->init = overlay_initfn; k->exit = overlay_exitfn; dc->reset = overlay_reset; diff --git a/tizen/src/mloop_event.c b/tizen/src/mloop_event.c index 98538b2a71..57462289e1 100644 --- a/tizen/src/mloop_event.c +++ b/tizen/src/mloop_event.c @@ -47,7 +47,7 @@ #include "monitor/monitor.h" #include "hw/pci/pci.h" #include "sysemu/sysemu.h" -#include "exec/memory-internal.h" +#include "exec/ram_addr.h" #include "emulator.h" #include "guest_debug.h"