From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=51849 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PTeMo-0001Q0-GU for qemu-devel@nongnu.org; Fri, 17 Dec 2010 12:46:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PTeLk-0002wk-A6 for qemu-devel@nongnu.org; Fri, 17 Dec 2010 12:45:17 -0500 Received: from mx1.redhat.com ([209.132.183.28]:28435) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PTeLj-0002wP-Vh for qemu-devel@nongnu.org; Fri, 17 Dec 2010 12:44:12 -0500 From: Kevin Wolf Date: Fri, 17 Dec 2010 18:44:26 +0100 Message-Id: <1292607893-13461-12-git-send-email-kwolf@redhat.com> In-Reply-To: <1292607893-13461-1-git-send-email-kwolf@redhat.com> References: <1292607893-13461-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH 11/38] pci: add storage class for sata List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anthony@codemonkey.ws Cc: kwolf@redhat.com, qemu-devel@nongnu.org From: Alexander Graf This patch adds the storage sata class id. Signed-off-by: Alexander Graf Signed-off-by: Kevin Wolf --- hw/pci_ids.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/hw/pci_ids.h b/hw/pci_ids.h index 82cba7e..ea3418c 100644 --- a/hw/pci_ids.h +++ b/hw/pci_ids.h @@ -15,6 +15,7 @@ #define PCI_CLASS_STORAGE_SCSI 0x0100 #define PCI_CLASS_STORAGE_IDE 0x0101 +#define PCI_CLASS_STORAGE_SATA 0x0106 #define PCI_CLASS_STORAGE_OTHER 0x0180 #define PCI_CLASS_NETWORK_ETHERNET 0x0200 -- 1.7.2.3