From patchwork Mon May 31 20:12:41 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sebastian Herbszt X-Patchwork-Id: 54132 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 BA87CB7D6E for ; Tue, 1 Jun 2010 06:14:00 +1000 (EST) Received: from localhost ([127.0.0.1]:50191 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OJBMy-0001bq-VL for incoming@patchwork.ozlabs.org; Mon, 31 May 2010 16:13:56 -0400 Received: from [140.186.70.92] (port=36704 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OJBMP-0001bY-6h for qemu-devel@nongnu.org; Mon, 31 May 2010 16:13:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OJBMM-0000r7-Vi for qemu-devel@nongnu.org; Mon, 31 May 2010 16:13:20 -0400 Received: from mail.gmx.net ([213.165.64.20]:56246) by eggs.gnu.org with smtp (Exim 4.69) (envelope-from ) id 1OJBMM-0000qR-29 for qemu-devel@nongnu.org; Mon, 31 May 2010 16:13:18 -0400 Received: (qmail invoked by alias); 31 May 2010 20:13:14 -0000 Received: from g225086247.adsl.alicedsl.de (HELO opensuse112) [92.225.86.247] by mail.gmx.net (mp051) with SMTP; 31 May 2010 22:13:14 +0200 X-Authenticated: #310364 X-Provags-ID: V01U2FsdGVkX1+9k1RMgXe9SxasXJJ9iTbZRAf1d4PCg3688q5VkG i/Hxp684RQ8/Zr X-Mailer: gregkh_patchbomb modified Date: Mon, 31 May 2010 22:12:41 +0200 Message-Id: <1275336761$1514@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: qemu-ahci-devel@lists.sourceforge.net, Sebastian Herbszt Subject: [Qemu-devel] [PATCH] ahci: drop board_ahci constants 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 Drop not used board_ahci constants. Signed-off-by: Sebastian Herbszt diff --git a/hw/ahci.c b/hw/ahci.c index 3476cea..4090def 100644 --- a/hw/ahci.c +++ b/hw/ahci.c @@ -65,12 +65,6 @@ do { fprintf(stderr,"ahci: " fmt , ## __VA_ARGS__); } while (0) #define RX_FIS_SDB 0x58 /* offset of SDB FIS data */ #define RX_FIS_UNK 0x60 /* offset of Unknown FIS data */ -#define board_ahci 0 -#define board_ahci_pi 1 -#define board_ahci_vt8251 2 -#define board_ahci_ign_iferr 3 -#define board_ahci_sb600 4 - /* global controller registers */ #define HOST_CAP 0x00 /* host capabilities */ #define HOST_CTL 0x04 /* global host control */