From patchwork Wed Aug 12 19:20:28 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amit Shah X-Patchwork-Id: 31268 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 bilbo.ozlabs.org (Postfix) with ESMTPS id EB23DB6F1E for ; Thu, 13 Aug 2009 05:21:57 +1000 (EST) Received: from localhost ([127.0.0.1]:44948 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MbJOU-0001Zu-W9 for incoming@patchwork.ozlabs.org; Wed, 12 Aug 2009 15:21:55 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MbJNT-0001Ts-6q for qemu-devel@nongnu.org; Wed, 12 Aug 2009 15:20:51 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MbJNO-0001NI-Pl for qemu-devel@nongnu.org; Wed, 12 Aug 2009 15:20:50 -0400 Received: from [199.232.76.173] (port=41458 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MbJNO-0001NB-GZ for qemu-devel@nongnu.org; Wed, 12 Aug 2009 15:20:46 -0400 Received: from mx2.redhat.com ([66.187.237.31]:57277) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MbJNN-0007ku-Vt for qemu-devel@nongnu.org; Wed, 12 Aug 2009 15:20:46 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n7CJKifo010608; Wed, 12 Aug 2009 15:20:44 -0400 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n7CJKhiW012373; Wed, 12 Aug 2009 15:20:44 -0400 Received: from localhost (vpn-12-53.rdu.redhat.com [10.11.12.53]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n7CJKfa2001611; Wed, 12 Aug 2009 15:20:42 -0400 From: Amit Shah To: qemu-devel@nongnu.org Date: Thu, 13 Aug 2009 00:50:28 +0530 Message-Id: <1250104828-6873-1-git-send-email-amit.shah@redhat.com> X-Scanned-By: MIMEDefang 2.58 on 172.16.27.26 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) Cc: Amit Shah , aliguori@us.ibm.com Subject: [Qemu-devel] [PATCH] pci ids: remove redundant defines 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 Remove some redundant definitions for PCI classes: PCI_CLASS_SERIAL_OTHER already exists as PCI_CLASS_COMMUNICATION_OTHER and PCI_CLASS_PROCESSOR_CO is redefined. PCI_CLASS_SERIAL_OTHER is not used anywhere. Signed-off-by: Amit Shah --- hw/pci_ids.h | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/hw/pci_ids.h b/hw/pci_ids.h index 2fe60ee..3afe674 100644 --- a/hw/pci_ids.h +++ b/hw/pci_ids.h @@ -35,9 +35,6 @@ #define PCI_CLASS_BRIDGE_PCI 0x0604 #define PCI_CLASS_BRIDGE_OTHER 0x0680 -#define PCI_CLASS_SERIAL_OTHER 0x0780 - -#define PCI_CLASS_PROCESSOR_CO 0x0b40 #define PCI_CLASS_COMMUNICATION_OTHER 0x0780 #define PCI_CLASS_PROCESSOR_CO 0x0b40