From 50d7a662b3d6e6e9d256b78ecf28d03d8be6944d Mon Sep 17 00:00:00 2001 From: SeokYeon Hwang Date: Wed, 23 Apr 2014 10:10:54 +0900 Subject: [PATCH] build: fix compilation error Some header file is renamed. Some function prototype is modified. Change-Id: I4100279f3366dac0f40a2319e0b933dd92398b34 Signed-off-by: SeokYeon Hwang --- tizen/src/hw/maru_board.c | 2 +- tizen/src/hw/maru_brightness.c | 1 - tizen/src/hw/maru_overlay.c | 1 - tizen/src/mloop_event.c | 2 +- 4 files changed, 2 insertions(+), 4 deletions(-) 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" -- 2.34.1