build: fix compilation error
authorSeokYeon Hwang <syeon.hwang@samsung.com>
Wed, 23 Apr 2014 01:10:54 +0000 (10:10 +0900)
committerSeokYeon Hwang <syeon.hwang@samsung.com>
Wed, 23 Apr 2014 01:10:54 +0000 (10:10 +0900)
Some header file is renamed.
Some function prototype is modified.

Change-Id: I4100279f3366dac0f40a2319e0b933dd92398b34
Signed-off-by: SeokYeon Hwang <syeon.hwang@samsung.com>
tizen/src/hw/maru_board.c
tizen/src/hw/maru_brightness.c
tizen/src/hw/maru_overlay.c
tizen/src/mloop_event.c

index 9fb64cae7c1aed0f244117100356db7494e6e21b..12c10c18c7175341c557970abf2a09819908a88b 100644 (file)
@@ -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) {
index b65e15d59e07370143325171fbfec9ca98699806..30e8e38a15fa5115a0c60cae1fb2ccfc037860de 100644 (file)
@@ -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;
 }
index 960b0cfd2c3b41877ff609c77eb0c85433636098..5f5d807f5839465364ac9a598bba4972aa544a09 100644 (file)
@@ -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;
index 98538b2a711864a64c347687a70cb70d28627452..57462289e139afed3be40f51a5c88fd48a6be641 100644 (file)
@@ -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"