From patchwork Mon Sep 14 15:49:20 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerd Hoffmann X-Patchwork-Id: 33588 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 80410B7BCB for ; Tue, 15 Sep 2009 01:59:44 +1000 (EST) Received: from localhost ([127.0.0.1]:49695 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MnDxt-0002tK-Lg for incoming@patchwork.ozlabs.org; Mon, 14 Sep 2009 11:59:41 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MnDoC-0004dM-K2 for qemu-devel@nongnu.org; Mon, 14 Sep 2009 11:49:40 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MnDo7-0004Y2-1s for qemu-devel@nongnu.org; Mon, 14 Sep 2009 11:49:39 -0400 Received: from [199.232.76.173] (port=54815 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MnDo6-0004Xg-H2 for qemu-devel@nongnu.org; Mon, 14 Sep 2009 11:49:34 -0400 Received: from mx1.redhat.com ([209.132.183.28]:58845) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MnDo6-0007VK-0Z for qemu-devel@nongnu.org; Mon, 14 Sep 2009 11:49:34 -0400 Received: from int-mx08.intmail.prod.int.phx2.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n8EFnXpl022647 for ; Mon, 14 Sep 2009 11:49:33 -0400 Received: from zweiblum.home.kraxel.org (vpn1-5-94.ams2.redhat.com [10.36.5.94]) by int-mx08.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with SMTP id n8EFnUBr029585; Mon, 14 Sep 2009 11:49:31 -0400 Received: by zweiblum.home.kraxel.org (Postfix, from userid 500) id 4FBAB700E5; Mon, 14 Sep 2009 17:49:25 +0200 (CEST) From: Gerd Hoffmann To: qemu-devel@nongnu.org Date: Mon, 14 Sep 2009 17:49:20 +0200 Message-Id: <1252943364-32705-6-git-send-email-kraxel@redhat.com> In-Reply-To: <1252943364-32705-1-git-send-email-kraxel@redhat.com> References: <1252943364-32705-1-git-send-email-kraxel@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.21 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: Gerd Hoffmann Subject: [Qemu-devel] [PATCH 5/9] ide/pci: fix indention 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 Signed-off-by: Gerd Hoffmann --- hw/ide/pci.c | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/hw/ide/pci.c b/hw/ide/pci.c index 607472b..e3b43a0 100644 --- a/hw/ide/pci.c +++ b/hw/ide/pci.c @@ -404,15 +404,15 @@ void pci_cmd646_ide_init(PCIBus *bus, DriveInfo **hd_table, } pci_register_bar((PCIDevice *)d, 0, 0x8, - PCI_ADDRESS_SPACE_IO, ide_map); + PCI_ADDRESS_SPACE_IO, ide_map); pci_register_bar((PCIDevice *)d, 1, 0x4, - PCI_ADDRESS_SPACE_IO, ide_map); + PCI_ADDRESS_SPACE_IO, ide_map); pci_register_bar((PCIDevice *)d, 2, 0x8, - PCI_ADDRESS_SPACE_IO, ide_map); + PCI_ADDRESS_SPACE_IO, ide_map); pci_register_bar((PCIDevice *)d, 3, 0x4, - PCI_ADDRESS_SPACE_IO, ide_map); + PCI_ADDRESS_SPACE_IO, ide_map); pci_register_bar((PCIDevice *)d, 4, 0x10, - PCI_ADDRESS_SPACE_IO, bmdma_map); + PCI_ADDRESS_SPACE_IO, bmdma_map); pci_conf[0x3d] = 0x01; // interrupt on pin 1 @@ -466,7 +466,7 @@ void pci_piix3_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn) piix3_reset(d); pci_register_bar((PCIDevice *)d, 4, 0x10, - PCI_ADDRESS_SPACE_IO, bmdma_map); + PCI_ADDRESS_SPACE_IO, bmdma_map); ide_init2(&d->bus[0], hd_table[0], hd_table[1], isa_reserve_irq(14)); ide_init2(&d->bus[1], hd_table[2], hd_table[3], isa_reserve_irq(15));