From patchwork Tue Mar 30 08:20:05 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduard - Gabriel Munteanu X-Patchwork-Id: 48971 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 2E647B7CEF for ; Wed, 31 Mar 2010 01:36:27 +1100 (EST) Received: from localhost ([127.0.0.1]:38532 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NwcWv-0002tm-Kp for incoming@patchwork.ozlabs.org; Tue, 30 Mar 2010 10:34:57 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NwWgf-0003Nw-Oq for qemu-devel@nongnu.org; Tue, 30 Mar 2010 04:20:37 -0400 Received: from [140.186.70.92] (port=40401 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NwWgd-0003MS-J7 for qemu-devel@nongnu.org; Tue, 30 Mar 2010 04:20:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NwWgX-000494-5X for qemu-devel@nongnu.org; Tue, 30 Mar 2010 04:20:35 -0400 Received: from mail-bw0-f218.google.com ([209.85.218.218]:34484) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NwWgW-00048Z-Ut for qemu-devel@nongnu.org; Tue, 30 Mar 2010 04:20:29 -0400 Received: by bwz10 with SMTP id 10so14273985bwz.2 for ; Tue, 30 Mar 2010 01:20:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:from:to:cc:subject :date:message-id:x-mailer:in-reply-to:references; bh=7Oc1xwE6ktoQyc0CPQtM9+lUa30waFjuVtA8jn37/W4=; b=m/DmlvTQf9F+VEWAYxIKW2tLPioFrSr744TQVt78v1nEQ1W75gZzS9CVnruasAxD77 mQhkISogLh4BhT2vgo1HMetpy0Z7pBvcOg5dSgKKftRH8mik957WP+mjrOCV7tRxwW9A SAPO/oNvZNtvmbqdiYwP3Pinj42uqB/sVSqAc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; b=wdCVQ0N7yp7jVonbri3UtOpREdsSdw4DeeZK/RMr4Y1vMrHQuEs5jcao9cTuZFt4rm yp182ZGdkYo2DDTmWXDscavnro9Efasp19PHPRnHptbX2qWbIiMj+7gMRkMzqRVWKEWa 5UeSI3x7mPvmnNZ1ssb22wZgKeHFCp2o+2qaA= Received: by 10.204.6.66 with SMTP id 2mr1776047bky.138.1269937226822; Tue, 30 Mar 2010 01:20:26 -0700 (PDT) Received: from localhost.localdomain ([188.25.93.130]) by mx.google.com with ESMTPS id 16sm2589620bwz.9.2010.03.30.01.20.25 (version=SSLv3 cipher=RC4-MD5); Tue, 30 Mar 2010 01:20:26 -0700 (PDT) From: Eduard - Gabriel Munteanu To: joro@8bytes.org Date: Tue, 30 Mar 2010 11:20:05 +0300 Message-Id: X-Mailer: git-send-email 1.6.4.4 In-Reply-To: References: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Mailman-Approved-At: Tue, 30 Mar 2010 10:21:01 -0400 Cc: aliguori@us.ibm.com, Eduard - Gabriel Munteanu , avi@redhat.com, kvm@vger.kernel.org, qemu-devel@nongnu.org Subject: [Qemu-devel] [RFC PATCH 4/7] sparc: rename hw/iommu.c 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 hw/iommu.c concerns the SPARC IOMMU. However we intend to implement the AMD IOMMU, which could lead to confusion unless we rename the former. Signed-off-by: Eduard - Gabriel Munteanu --- Makefile.target | 2 +- hw/{iommu.c => sparc_iommu.c} | 0 hw/sun4m.h | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename hw/{iommu.c => sparc_iommu.c} (100%) diff --git a/Makefile.target b/Makefile.target index 4d88543..cbe19a6 100644 --- a/Makefile.target +++ b/Makefile.target @@ -305,7 +305,7 @@ obj-sparc-y += vga.o vga-pci.o obj-sparc-y += fdc.o mc146818rtc.o serial.o obj-sparc-y += cirrus_vga.o parallel.o else -obj-sparc-y = sun4m.o lance.o tcx.o iommu.o slavio_intctl.o +obj-sparc-y = sun4m.o lance.o tcx.o sparc_iommu.o slavio_intctl.o obj-sparc-y += slavio_timer.o slavio_misc.o fdc.o sparc32_dma.o obj-sparc-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o endif diff --git a/hw/iommu.c b/hw/sparc_iommu.c similarity index 100% rename from hw/iommu.c rename to hw/sparc_iommu.c diff --git a/hw/sun4m.h b/hw/sun4m.h index ce97ee5..5007924 100644 --- a/hw/sun4m.h +++ b/hw/sun4m.h @@ -5,7 +5,7 @@ /* Devices used by sparc32 system. */ -/* iommu.c */ +/* sparc_iommu.c */ void sparc_iommu_memory_rw(void *opaque, target_phys_addr_t addr, uint8_t *buf, int len, int is_write); static inline void sparc_iommu_memory_read(void *opaque,