From patchwork Tue Mar 2 21:37:48 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 46722 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 06F23B7CCD for ; Wed, 3 Mar 2010 09:29:37 +1100 (EST) Received: from localhost ([127.0.0.1]:46632 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NmZyd-0006oe-8P for incoming@patchwork.ozlabs.org; Tue, 02 Mar 2010 16:50:03 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NmZoO-0004Rm-KQ for qemu-devel@nongnu.org; Tue, 02 Mar 2010 16:39:28 -0500 Received: from [199.232.76.173] (port=46558 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NmZoN-0004RY-RP for qemu-devel@nongnu.org; Tue, 02 Mar 2010 16:39:27 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NmZoL-0004va-TK for qemu-devel@nongnu.org; Tue, 02 Mar 2010 16:39:27 -0500 Received: from moutng.kundenserver.de ([212.227.17.9]:63461) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NmZoL-0004vW-A8 for qemu-devel@nongnu.org; Tue, 02 Mar 2010 16:39:25 -0500 Received: from flocke.weilnetz.de (p54ADFEFD.dip.t-dialin.net [84.173.254.253]) by mrelayeu.kundenserver.de (node=mreu0) with ESMTP (Nemesis) id 0LhiWz-1NQDQz1ItV-00mqK3; Tue, 02 Mar 2010 22:39:24 +0100 Received: from stefan by flocke.weilnetz.de with local (Exim 4.71) (envelope-from ) id 1NmZo9-000521-Hh; Tue, 02 Mar 2010 22:39:13 +0100 From: Stefan Weil To: QEMU Developers X-Mailer: git-send-email 1.7.0 In-Reply-To: <4B7821AC.6080400@mail.berlios.de> References: <4B7821AC.6080400@mail.berlios.de> X-Provags-ID: V01U2FsdGVkX1+/yqRsfBEBWAAnR69BUbGcWTxouwIyx4J4E8X J13c1eYGbUkyxSb7mSO40MkwiUosHb3+MgrggZrl4CpUWPuOFC sRDyIDPnd76k3HtxeKgFC+oheZ43CNgMbbsd6ANWQPukNNy3Qn x+w== X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: mst@redhat.com Subject: [Qemu-devel] [PATCHv3 08/20] eepro100: Add device descriptions X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Add descriptions for all devices. These descriptions are shown when users call qemu -device ? Signed-off-by: Stefan Weil --- hw/eepro100.c | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/hw/eepro100.c b/hw/eepro100.c index 6c11209..d5d3abc 100644 --- a/hw/eepro100.c +++ b/hw/eepro100.c @@ -1980,6 +1980,7 @@ static int pci_i82562_init(PCIDevice *pci_dev) static PCIDeviceInfo eepro100_info[] = { { .qdev.name = "i82550", + .qdev.desc = "Intel i82550 Ethernet", .qdev.size = sizeof(EEPRO100State), .init = pci_i82550_init, .exit = pci_nic_uninit, @@ -1990,6 +1991,7 @@ static PCIDeviceInfo eepro100_info[] = { }, },{ .qdev.name = "i82551", + .qdev.desc = "Intel i82551 Ethernet", .qdev.size = sizeof(EEPRO100State), .init = pci_i82551_init, .exit = pci_nic_uninit, @@ -2000,6 +2002,7 @@ static PCIDeviceInfo eepro100_info[] = { }, },{ .qdev.name = "i82557a", + .qdev.desc = "Intel i82557A Ethernet", .qdev.size = sizeof(EEPRO100State), .init = pci_i82557a_init, .exit = pci_nic_uninit, @@ -2010,6 +2013,7 @@ static PCIDeviceInfo eepro100_info[] = { }, },{ .qdev.name = "i82557b", + .qdev.desc = "Intel i82557B Ethernet", .qdev.size = sizeof(EEPRO100State), .init = pci_i82557b_init, .exit = pci_nic_uninit, @@ -2020,6 +2024,7 @@ static PCIDeviceInfo eepro100_info[] = { }, },{ .qdev.name = "i82557c", + .qdev.desc = "Intel i82557C Ethernet", .qdev.size = sizeof(EEPRO100State), .init = pci_i82557c_init, .exit = pci_nic_uninit, @@ -2030,6 +2035,7 @@ static PCIDeviceInfo eepro100_info[] = { }, },{ .qdev.name = "i82558a", + .qdev.desc = "Intel i82558A Ethernet", .qdev.size = sizeof(EEPRO100State), .init = pci_i82558a_init, .exit = pci_nic_uninit, @@ -2040,6 +2046,7 @@ static PCIDeviceInfo eepro100_info[] = { }, },{ .qdev.name = "i82558b", + .qdev.desc = "Intel i82558B Ethernet", .qdev.size = sizeof(EEPRO100State), .init = pci_i82558b_init, .exit = pci_nic_uninit, @@ -2050,6 +2057,7 @@ static PCIDeviceInfo eepro100_info[] = { }, },{ .qdev.name = "i82559a", + .qdev.desc = "Intel i82559A Ethernet", .qdev.size = sizeof(EEPRO100State), .init = pci_i82559a_init, .exit = pci_nic_uninit, @@ -2060,6 +2068,7 @@ static PCIDeviceInfo eepro100_info[] = { }, },{ .qdev.name = "i82559b", + .qdev.desc = "Intel i82559B Ethernet", .qdev.size = sizeof(EEPRO100State), .init = pci_i82559b_init, .exit = pci_nic_uninit, @@ -2070,6 +2079,7 @@ static PCIDeviceInfo eepro100_info[] = { }, },{ .qdev.name = "i82559c", + .qdev.desc = "Intel i82559C Ethernet", .qdev.size = sizeof(EEPRO100State), .init = pci_i82559c_init, .exit = pci_nic_uninit, @@ -2080,6 +2090,7 @@ static PCIDeviceInfo eepro100_info[] = { }, },{ .qdev.name = "i82559er", + .qdev.desc = "Intel i82559ER Ethernet", .qdev.size = sizeof(EEPRO100State), .init = pci_i82559er_init, .exit = pci_nic_uninit, @@ -2090,6 +2101,7 @@ static PCIDeviceInfo eepro100_info[] = { }, },{ .qdev.name = "i82562", + .qdev.desc = "Intel i82562 Ethernet", .qdev.size = sizeof(EEPRO100State), .init = pci_i82562_init, .exit = pci_nic_uninit,