From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=43794 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pl6Ow-0002am-56 for qemu-devel@nongnu.org; Thu, 03 Feb 2011 16:07:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pl6Ou-0006NM-5o for qemu-devel@nongnu.org; Thu, 03 Feb 2011 16:07:37 -0500 Received: from mx1.redhat.com ([209.132.183.28]:64964) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pl6Ot-0006NC-Tf for qemu-devel@nongnu.org; Thu, 03 Feb 2011 16:07:36 -0500 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id p13L7ZMI015789 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 3 Feb 2011 16:07:35 -0500 Received: from playa.tlv.redhat.com (dhcp-3-110.tlv.redhat.com [10.35.3.110]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id p13L7F5w004913 for ; Thu, 3 Feb 2011 16:07:34 -0500 From: Alon Levy Date: Thu, 3 Feb 2011 23:07:10 +0200 Message-Id: <1296767234-9480-14-git-send-email-alevy@redhat.com> In-Reply-To: <1296767234-9480-1-git-send-email-alevy@redhat.com> References: <1296767234-9480-1-git-send-email-alevy@redhat.com> Subject: [Qemu-devel] [PATCH 13/17] ccid: add qdev description strings List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Signed-off-by: Alon Levy --- hw/ccid-card-emulated.c | 1 + hw/ccid-card-passthru.c | 1 + hw/usb-ccid.c | 1 + 3 files changed, 3 insertions(+), 0 deletions(-) diff --git a/hw/ccid-card-emulated.c b/hw/ccid-card-emulated.c index 09ce770..2e25daa 100644 --- a/hw/ccid-card-emulated.c +++ b/hw/ccid-card-emulated.c @@ -525,6 +525,7 @@ EnumTable backend_enum_table[] = { static CCIDCardInfo emulated_card_info = { .qdev.name = EMULATED_DEV_NAME, + .qdev.desc = "emulated smartcard", .qdev.size = sizeof(EmulatedState), .initfn = emulated_initfn, .exitfn = emulated_exitfn, diff --git a/hw/ccid-card-passthru.c b/hw/ccid-card-passthru.c index 18540c0..2b45151 100644 --- a/hw/ccid-card-passthru.c +++ b/hw/ccid-card-passthru.c @@ -307,6 +307,7 @@ static VMStateDescription passthru_vmstate = { static CCIDCardInfo passthru_card_info = { .qdev.name = PASSTHRU_DEV_NAME, + .qdev.desc = "passthrough smartcard", .qdev.size = sizeof(PassthruState), .qdev.vmsd = &passthru_vmstate, .initfn = passthru_initfn, diff --git a/hw/usb-ccid.c b/hw/usb-ccid.c index 09e39ac..27a7103 100644 --- a/hw/usb-ccid.c +++ b/hw/usb-ccid.c @@ -1330,6 +1330,7 @@ static VMStateDescription ccid_vmstate = { static struct USBDeviceInfo ccid_info = { .product_desc = "QEMU USB CCID", .qdev.name = CCID_DEV_NAME, + .qdev.desc = "CCID Rev 1.1 smartcard reader", .qdev.size = sizeof(USBCCIDState), .init = ccid_initfn, .handle_packet = usb_generic_handle_packet, -- 1.7.4