39 lines
1.4 KiB
Diff
39 lines
1.4 KiB
Diff
|
|
From f9cd46b75aa937498b956cb32aef9232bef86cc9 Mon Sep 17 00:00:00 2001
|
||
|
|
From: Luo Yifan <luoyifan_yewu@cmss.chinamobile.com>
|
||
|
|
Date: Thu, 26 Sep 2024 14:12:57 +0800
|
||
|
|
Subject: [PATCH] sysemu: Cleanup qemu_run_machine_init_done_notifiers()
|
||
|
|
MIME-Version: 1.0
|
||
|
|
Content-Type: text/plain; charset=UTF-8
|
||
|
|
Content-Transfer-Encoding: 8bit
|
||
|
|
|
||
|
|
cherry picked from commit 9de225a1c27500c2d80a916d1c2a41d8e2a5f6e8
|
||
|
|
|
||
|
|
Remove qemu_run_machine_init_done_notifiers() since no implementation
|
||
|
|
and user.
|
||
|
|
|
||
|
|
Fixes: f66dc8737c9 ("vl: move all generic initialization out of vl.c")
|
||
|
|
Signed-off-by: Xiaoyao Li <xiaoyao.li@intel.com>
|
||
|
|
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
||
|
|
Message-Id: <20220104024136.1433545-1-xiaoyao.li@intel.com>
|
||
|
|
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
|
||
|
|
Signed-off-by: Luo Yifan <luoyifan_yewu@cmss.chinamobile.com>
|
||
|
|
---
|
||
|
|
include/sysemu/sysemu.h | 1 -
|
||
|
|
1 file changed, 1 deletion(-)
|
||
|
|
|
||
|
|
diff --git a/include/sysemu/sysemu.h b/include/sysemu/sysemu.h
|
||
|
|
index 8fae667172..b9421e03ff 100644
|
||
|
|
--- a/include/sysemu/sysemu.h
|
||
|
|
+++ b/include/sysemu/sysemu.h
|
||
|
|
@@ -16,7 +16,6 @@ extern bool qemu_uuid_set;
|
||
|
|
void qemu_add_exit_notifier(Notifier *notify);
|
||
|
|
void qemu_remove_exit_notifier(Notifier *notify);
|
||
|
|
|
||
|
|
-void qemu_run_machine_init_done_notifiers(void);
|
||
|
|
void qemu_add_machine_init_done_notifier(Notifier *notify);
|
||
|
|
void qemu_remove_machine_init_done_notifier(Notifier *notify);
|
||
|
|
|
||
|
|
--
|
||
|
|
2.41.0.windows.1
|
||
|
|
|