From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:35435) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QjZZk-0003jp-CZ for qemu-devel@nongnu.org; Wed, 20 Jul 2011 12:24:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QjZZe-0008Ox-AX for qemu-devel@nongnu.org; Wed, 20 Jul 2011 12:24:42 -0400 Received: from oxygen.pond.sub.org ([78.46.104.156]:55527) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QjZZc-0008Ne-27 for qemu-devel@nongnu.org; Wed, 20 Jul 2011 12:24:36 -0400 From: Markus Armbruster Date: Wed, 20 Jul 2011 18:23:40 +0200 Message-Id: <1311179069-27882-7-git-send-email-armbru@redhat.com> In-Reply-To: <1311179069-27882-1-git-send-email-armbru@redhat.com> References: <1311179069-27882-1-git-send-email-armbru@redhat.com> Subject: [Qemu-devel] [PATCH 06/55] block/raw-win32: Drop disabled code for removable host devices List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, quintela@redhat.com, dbaryshkov@gmail.com, stefano.stabellini@eu.citrix.com, lcapitulino@redhat.com, amit.shah@redhat.com It's been disabled since the start (commit 19cb3738, Aug 2006), and has been untouched except for spelling fixes and such. I don't feel like dragging it along any further. Signed-off-by: Markus Armbruster --- block/raw-win32.c | 35 ----------------------------------- 1 files changed, 0 insertions(+), 35 deletions(-) diff --git a/block/raw-win32.c b/block/raw-win32.c index 56bd719..17cc540 100644 --- a/block/raw-win32.c +++ b/block/raw-win32.c @@ -366,41 +366,6 @@ static int hdev_open(BlockDriverState *bs, const char *filename, int flags) return 0; } -#if 0 -/***********************************************/ -/* removable device additional commands */ - -static int raw_is_inserted(BlockDriverState *bs) -{ - return 1; -} - -static int raw_media_changed(BlockDriverState *bs) -{ - return -ENOTSUP; -} - -static int raw_eject(BlockDriverState *bs, int eject_flag) -{ - DWORD ret_count; - - if (s->type == FTYPE_FILE) - return -ENOTSUP; - if (eject_flag) { - DeviceIoControl(s->hfile, IOCTL_STORAGE_EJECT_MEDIA, - NULL, 0, NULL, 0, &lpBytesReturned, NULL); - } else { - DeviceIoControl(s->hfile, IOCTL_STORAGE_LOAD_MEDIA, - NULL, 0, NULL, 0, &lpBytesReturned, NULL); - } -} - -static int raw_set_locked(BlockDriverState *bs, int locked) -{ - return -ENOTSUP; -} -#endif - static int hdev_has_zero_init(BlockDriverState *bs) { return 0; -- 1.7.2.3