From patchwork Sun Feb 14 16:16:17 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 45315 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 9EE03B7CB8 for ; Mon, 15 Feb 2010 03:36:05 +1100 (EST) Received: from localhost ([127.0.0.1]:53859 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NghOp-0001CQ-3j for incoming@patchwork.ozlabs.org; Sun, 14 Feb 2010 11:32:47 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NghA5-00062Y-TT for qemu-devel@nongnu.org; Sun, 14 Feb 2010 11:17:33 -0500 Received: from [199.232.76.173] (port=43067 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NghA5-00062H-Bf for qemu-devel@nongnu.org; Sun, 14 Feb 2010 11:17:33 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NghA3-00024I-T4 for qemu-devel@nongnu.org; Sun, 14 Feb 2010 11:17:33 -0500 Received: from moutng.kundenserver.de ([212.227.17.9]:63676) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NghA3-00024A-Ax for qemu-devel@nongnu.org; Sun, 14 Feb 2010 11:17:31 -0500 Received: from flocke.weilnetz.de (p54ADCA6B.dip.t-dialin.net [84.173.202.107]) by mrelayeu.kundenserver.de (node=mrbap0) with ESMTP (Nemesis) id 0LbPxa-1O5YOW1ZLG-00kExF; Sun, 14 Feb 2010 17:17:30 +0100 Received: from stefan by flocke.weilnetz.de with local (Exim 4.71) (envelope-from ) id 1Ngh9r-0005V9-KA; Sun, 14 Feb 2010 17:17:19 +0100 From: Stefan Weil To: QEMU Developers Date: Sun, 14 Feb 2010 17:16:17 +0100 Message-Id: <1266164189-21062-8-git-send-email-weil@mail.berlios.de> X-Mailer: git-send-email 1.6.6.1 In-Reply-To: <1266164189-21062-7-git-send-email-weil@mail.berlios.de> References: <4B7821AC.6080400@mail.berlios.de> <1266164189-21062-1-git-send-email-weil@mail.berlios.de> <1266164189-21062-2-git-send-email-weil@mail.berlios.de> <1266164189-21062-3-git-send-email-weil@mail.berlios.de> <1266164189-21062-4-git-send-email-weil@mail.berlios.de> <1266164189-21062-5-git-send-email-weil@mail.berlios.de> <1266164189-21062-6-git-send-email-weil@mail.berlios.de> <1266164189-21062-7-git-send-email-weil@mail.berlios.de> X-Provags-ID: V01U2FsdGVkX19YSvx73GNp9L1izLp0DcXLMYhpOh2Foz9b7c7 MPFtYtNbUZoo3ZwecENVwEvhUH+Ceqsg9F01Ja4ppRcBhKzXJT XknVhRa+ok29I/DGVIln7mKPF+ikcGwBQSh9Kb+RAUYL/wLi9A bmg== X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: Subject: [Qemu-devel] [PATCH 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 3e2f008..031fe69 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,