From patchwork Thu May 13 15:50:20 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sebastian Herbszt X-Patchwork-Id: 52491 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 18D72B7E37 for ; Fri, 14 May 2010 01:52:18 +1000 (EST) Received: from localhost ([127.0.0.1]:36096 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OCahq-0006La-RJ for incoming@patchwork.ozlabs.org; Thu, 13 May 2010 11:52:14 -0400 Received: from [140.186.70.92] (port=42096 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OCahB-0006LK-Cg for qemu-devel@nongnu.org; Thu, 13 May 2010 11:51:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OCahA-000425-3e for qemu-devel@nongnu.org; Thu, 13 May 2010 11:51:33 -0400 Received: from mail.gmx.net ([213.165.64.20]:42774) by eggs.gnu.org with smtp (Exim 4.69) (envelope-from ) id 1OCah9-00041Z-NA for qemu-devel@nongnu.org; Thu, 13 May 2010 11:51:32 -0400 Received: (qmail invoked by alias); 13 May 2010 15:51:29 -0000 Received: from g226032134.adsl.alicedsl.de (HELO opensuse112) [92.226.32.134] by mail.gmx.net (mp071) with SMTP; 13 May 2010 17:51:29 +0200 X-Authenticated: #310364 X-Provags-ID: V01U2FsdGVkX1/0XAZxlIT03EE5pSa/tQx18IP4sZxlwYUTeEdT9K F0NUkX2cROMwGM X-Mailer: gregkh_patchbomb modified Date: Thu, 13 May 2010 17:50:20 +0200 Message-Id: <1273765820$1811@local> Mime-Version: 1.0 To: qemu-devel@nongnu.org From: Sebastian Herbszt X-Y-GMX-Trusted: 0 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. Cc: Sebastian Herbszt Subject: [Qemu-devel] [PATCH] ahci: increase MAX_SATA_DEVS to 4 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 All ICH6 ports are now available. Signed-off-by: Sebastian Herbszt diff --git a/sysemu.h b/sysemu.h index 70d5a33..022be18 100644 --- a/sysemu.h +++ b/sysemu.h @@ -177,7 +177,7 @@ typedef struct DriveInfo { #define MAX_IDE_DEVS 2 #define MAX_SCSI_DEVS 7 -#define MAX_SATA_DEVS 1 +#define MAX_SATA_DEVS 4 #define MAX_DRIVES 32 extern QTAILQ_HEAD(drivelist, DriveInfo) drives;