From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:37347) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UX74d-000839-Ni for qemu-devel@nongnu.org; Tue, 30 Apr 2013 05:42:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UX74Y-0005Hu-19 for qemu-devel@nongnu.org; Tue, 30 Apr 2013 05:42:11 -0400 Received: from mx1.redhat.com ([209.132.183.28]:17756) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UX74X-0005Hi-QD for qemu-devel@nongnu.org; Tue, 30 Apr 2013 05:42:05 -0400 Date: Tue, 30 Apr 2013 12:41:50 +0300 From: "Michael S. Tsirkin" Message-ID: <20130430094149.GA29094@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH] sysemu: drop register_devices from header List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Blue Swirl , Paolo Bonzini , Anthony Liguori , Stefan Hajnoczi , Juan Quintela No user in sight. Signed-off-by: Michael S. Tsirkin --- include/sysemu/sysemu.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/sysemu/sysemu.h b/include/sysemu/sysemu.h index 43b961c..5c2e048 100644 --- a/include/sysemu/sysemu.h +++ b/include/sysemu/sysemu.h @@ -175,8 +175,6 @@ void usb_info(Monitor *mon, const QDict *qdict); void rtc_change_mon_event(struct tm *tm); -void register_devices(void); - void add_boot_device_path(int32_t bootindex, DeviceState *dev, const char *suffix); char *get_boot_devices_list(size_t *size); -- MST