From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34083) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eFNE4-0006SA-Gf for qemu-devel@nongnu.org; Thu, 16 Nov 2017 11:41:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eFNDy-0000oR-E1 for qemu-devel@nongnu.org; Thu, 16 Nov 2017 11:41:16 -0500 Received: from mx1.redhat.com ([209.132.183.28]:58156) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eFNDy-0000o2-7v for qemu-devel@nongnu.org; Thu, 16 Nov 2017 11:41:10 -0500 Date: Thu, 16 Nov 2017 18:41:05 +0200 From: "Michael S. Tsirkin" Message-ID: <1510850407-17266-8-git-send-email-mst@redhat.com> References: <1510850407-17266-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <1510850407-17266-1-git-send-email-mst@redhat.com> Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL 7/9] vmcoreinfo: put it in the 'misc' device category List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , =?utf-8?Q?Marc-Andr=C3=A9?= Lureau From: Marc-Andr=C3=A9 Lureau Signed-off-by: Marc-Andr=C3=A9 Lureau Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/misc/vmcoreinfo.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/misc/vmcoreinfo.c b/hw/misc/vmcoreinfo.c index a618e12..31db57a 100644 --- a/hw/misc/vmcoreinfo.c +++ b/hw/misc/vmcoreinfo.c @@ -79,6 +79,7 @@ static void vmcoreinfo_device_class_init(ObjectClass *k= lass, void *data) dc->vmsd =3D &vmstate_vmcoreinfo; dc->realize =3D vmcoreinfo_realize; dc->hotpluggable =3D false; + set_bit(DEVICE_CATEGORY_MISC, dc->categories); } =20 static const TypeInfo vmcoreinfo_device_info =3D { --=20 MST