From patchwork Wed Apr 4 23:29:39 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Andreas_F=C3=A4rber?= X-Patchwork-Id: 150841 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 9CBC7B702F for ; Thu, 5 Apr 2012 12:41:20 +1000 (EST) Received: from localhost ([::1]:37744 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SFZep-00037s-H2 for incoming@patchwork.ozlabs.org; Wed, 04 Apr 2012 19:30:31 -0400 Received: from eggs.gnu.org ([208.118.235.92]:36144) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SFZeW-0002cY-SW for qemu-devel@nongnu.org; Wed, 04 Apr 2012 19:30:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SFZeS-0005za-Gt for qemu-devel@nongnu.org; Wed, 04 Apr 2012 19:30:11 -0400 Received: from cantor2.suse.de ([195.135.220.15]:45643 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SFZeS-0005ye-Ak for qemu-devel@nongnu.org; Wed, 04 Apr 2012 19:30:08 -0400 Received: from relay1.suse.de (unknown [195.135.220.254]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx2.suse.de (Postfix) with ESMTP id 4A0B2935A1 for ; Thu, 5 Apr 2012 01:29:57 +0200 (CEST) From: =?UTF-8?q?Andreas=20F=C3=A4rber?= To: qemu-devel@nongnu.org Date: Thu, 5 Apr 2012 01:29:39 +0200 Message-Id: <1333582180-9380-2-git-send-email-afaerber@suse.de> X-Mailer: git-send-email 1.7.7 In-Reply-To: <1333582180-9380-1-git-send-email-afaerber@suse.de> References: <1333582180-9380-1-git-send-email-afaerber@suse.de> MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4-2.6 X-Received-From: 195.135.220.15 Cc: =?UTF-8?q?Andreas=20F=C3=A4rber?= Subject: [Qemu-devel] [PATCH v2 1/2] target-sparc: Rename cpu_init.c X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Align QOM'ified targets, with a view to simplify Makefile.target. Signed-off-by: Andreas Färber --- Makefile.target | 2 +- target-sparc/{cpu_init.c => cpu.c} | 0 2 files changed, 1 insertions(+), 1 deletions(-) rename target-sparc/{cpu_init.c => cpu.c} (100%) diff --git a/target-sparc/cpu_init.c b/target-sparc/cpu.c similarity index 100% rename from target-sparc/cpu_init.c rename to target-sparc/cpu.c diff --git a/Makefile.target b/Makefile.target index 6c4a77a..1110796 100644 --- a/Makefile.target +++ b/Makefile.target @@ -96,7 +96,7 @@ libobj-$(TARGET_ARM) += cpu.o libobj-$(TARGET_S390X) += cpu.o ifeq ($(TARGET_BASE_ARCH), sparc) libobj-y += fop_helper.o cc_helper.o win_helper.o mmu_helper.o ldst_helper.o -libobj-y += cpu_init.o +libobj-y += cpu.o endif libobj-$(TARGET_SPARC) += int32_helper.o libobj-$(TARGET_SPARC64) += int64_helper.o