From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46268) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZAxcw-0000RM-52 for qemu-devel@nongnu.org; Fri, 03 Jul 2015 05:51:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZAxcq-0005IL-VD for qemu-devel@nongnu.org; Fri, 03 Jul 2015 05:51:22 -0400 Received: from mail-qk0-x230.google.com ([2607:f8b0:400d:c09::230]:32791) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZAxcq-0005Hr-R6 for qemu-devel@nongnu.org; Fri, 03 Jul 2015 05:51:16 -0400 Received: by qkhu186 with SMTP id u186so69500505qkh.0 for ; Fri, 03 Jul 2015 02:51:16 -0700 (PDT) Sender: =?UTF-8?B?TWFyYy1BbmRyw6kgTHVyZWF1?= From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Fri, 3 Jul 2015 11:51:00 +0200 Message-Id: <1435917064-17827-2-git-send-email-marcandre.lureau@redhat.com> In-Reply-To: <1435917064-17827-1-git-send-email-marcandre.lureau@redhat.com> References: <1435917064-17827-1-git-send-email-marcandre.lureau@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH 1/5] qapi: add comment block before ChardevDummy List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= , armbru@redhat.com, mdroth@linux.vnet.ibm.com This is mainly to please the doc generation that requires comment block before the declaration. Signed-off-by: Marc-André Lureau --- qapi-schema.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/qapi-schema.json b/qapi-schema.json index 106008c..71c894e 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3016,13 +3016,17 @@ { 'struct': 'ChardevRingbuf', 'data': { '*size' : 'int' } } ## +# @ChardevDummy +## +{ 'struct': 'ChardevDummy', 'data': { } } + +## # @ChardevBackend: # # Configuration info for the new chardev backend. # # Since: 1.4 (testdev since 2.2) ## -{ 'struct': 'ChardevDummy', 'data': { } } { 'union': 'ChardevBackend', 'data': { 'file' : 'ChardevFile', 'serial' : 'ChardevHostdev', -- 2.4.3