From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46668) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f99UU-0004dG-3b for qemu-devel@nongnu.org; Thu, 19 Apr 2018 09:20:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f99UQ-0006L5-Tw for qemu-devel@nongnu.org; Thu, 19 Apr 2018 09:20:46 -0400 From: Gerd Hoffmann Date: Thu, 19 Apr 2018 15:20:24 +0200 Message-Id: <20180419132026.5494-3-kraxel@redhat.com> In-Reply-To: <20180419132026.5494-1-kraxel@redhat.com> References: <20180419132026.5494-1-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 2/4] ui: switch trivial displays to qapi parser List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Laurent Vivier , Paolo Bonzini , Michael Tokarev , qemu-trivial@nongnu.org, Markus Armbruster , Gerd Hoffmann Drop the option-less display types (egl-headless, curses, none) from parse_display(), so they'll be handled by parse_display_qapi(). Signed-off-by: Gerd Hoffmann --- vl.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/vl.c b/vl.c index 784c3fb795..39303d6b55 100644 --- a/vl.c +++ b/vl.c @@ -2188,10 +2188,6 @@ static void parse_display(const char *p) error_report("VNC requires a display argument vnc="); exit(1); } - } else if (strstart(p, "egl-headless", &opts)) { - dpy.type = DISPLAY_TYPE_EGL_HEADLESS; - } else if (strstart(p, "curses", &opts)) { - dpy.type = DISPLAY_TYPE_CURSES; } else if (strstart(p, "gtk", &opts)) { dpy.type = DISPLAY_TYPE_GTK; while (*opts) { @@ -2224,8 +2220,6 @@ static void parse_display(const char *p) } opts = nextopt; } - } else if (strstart(p, "none", &opts)) { - dpy.type = DISPLAY_TYPE_NONE; } else { parse_display_qapi(p); } -- 2.9.3