From patchwork Thu Sep 13 18:59:15 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Brown X-Patchwork-Id: 184013 Return-Path: X-Original-To: incoming-imx@patchwork.ozlabs.org Delivered-To: patchwork-incoming-imx@bilbo.ozlabs.org Received: from merlin.infradead.org (unknown [IPv6:2001:4978:20e::2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id CAE8B2C0095 for ; Sat, 15 Sep 2012 04:24:07 +1000 (EST) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TCaUG-00073k-4h; Fri, 14 Sep 2012 18:19:33 +0000 Received: from wolverine02.qualcomm.com ([199.106.114.251]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1TCEdB-0005t4-Mn for linux-arm-kernel@lists.infradead.org; Thu, 13 Sep 2012 18:59:18 +0000 X-IronPort-AV: E=McAfee;i="5400,1158,6834"; a="234070226" Received: from pdmz-ns-snip_115_219.qualcomm.com (HELO mostmsg01.qualcomm.com) ([199.106.115.219]) by wolverine02.qualcomm.com with ESMTP/TLS/DHE-RSA-AES256-SHA; 13 Sep 2012 11:59:16 -0700 Received: from codeaurora.org (pdmz-ns-snip_218_1.qualcomm.com [192.168.218.1]) by mostmsg01.qualcomm.com (Postfix) with ESMTPA id 9D76910004AA; Thu, 13 Sep 2012 11:59:16 -0700 (PDT) Date: Thu, 13 Sep 2012 11:59:15 -0700 From: David Brown To: arm@kernel.org Subject: [GIT PULL 1/5] msm cleanups (resend) Message-ID: <20120913185915.GF30032@codeaurora.org> References: <20120913185342.GA29823@codeaurora.org> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20120913185342.GA29823@codeaurora.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-Bad-Reply: References and In-Reply-To but no 'Re:' in Subject. X-Spam-Note: CRM114 invocation failed X-Spam-Score: -4.2 (----) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-4.2 points) pts rule name description ---- ---------------------- -------------------------------------------------- -2.3 RCVD_IN_DNSWL_MED RBL: Sender listed at http://www.dnswl.org/, medium trust [199.106.114.251 listed in list.dnswl.org] -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Mailman-Approved-At: Fri, 14 Sep 2012 14:09:30 -0400 Cc: Nicolas Pitre , Arnd Bergmann , linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Olof Johansson , Thomas Gleixner , Russell King X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+incoming-imx=patchwork.ozlabs.org@lists.infradead.org List-Id: linux-imx-kernel.lists.patchwork.ozlabs.org [resending to proper In-Reply-To] The following changes since commit 28a33cbc24e4256c143dce96c7d93bf423229f92: Linux 3.5 (2012-07-21 13:58:29 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git tags/msm-cleanup-for-3.7 for you to fetch changes up to e63770acb3c1e7334885ed4673aed1375f93484a: ARM: msm: Remove uncompiled board-msm7x27 (2012-09-13 11:13:08 -0700) ---------------------------------------------------------------- Various cleanups for the msm targets. Most of this is removing dead code, along with a fix of a sparse warning, a list fix from a semantic patch, and marking some functions as static. ---------------------------------------------------------------- Stephen Boyd (6): ARM: msm: Remove msm_hw_reset_hook ARM: msm: clock-pcom: Mark functions static ARM: msm: Remove unused idle.c ARM: msm: Fix sparse warnings due to incorrect type ARM: msm: Remove unused acpuclock-arm11 ARM: msm: Remove uncompiled board-msm7x27 Wei Yongjun (1): ARM: msm: dma: use list_move_tail instead of list_del/list_add_tail arch/arm/mach-msm/Makefile | 4 +- arch/arm/mach-msm/acpuclock-arm11.c | 525 -------------------------------- arch/arm/mach-msm/acpuclock.h | 32 -- arch/arm/mach-msm/board-mahimahi.c | 1 - arch/arm/mach-msm/board-msm7x27.c | 170 ----------- arch/arm/mach-msm/board-sapphire.c | 1 - arch/arm/mach-msm/clock-pcom.c | 18 +- arch/arm/mach-msm/dma.c | 3 +- arch/arm/mach-msm/idle.c | 49 --- arch/arm/mach-msm/include/mach/board.h | 10 - arch/arm/mach-msm/include/mach/system.h | 19 -- arch/arm/mach-msm/io.c | 3 +- arch/arm/mach-msm/proc_comm.c | 1 - arch/arm/mach-msm/smd.c | 7 - arch/arm/mach-msm/timer.c | 2 +- 15 files changed, 14 insertions(+), 831 deletions(-) delete mode 100644 arch/arm/mach-msm/acpuclock-arm11.c delete mode 100644 arch/arm/mach-msm/acpuclock.h delete mode 100644 arch/arm/mach-msm/board-msm7x27.c delete mode 100644 arch/arm/mach-msm/idle.c delete mode 100644 arch/arm/mach-msm/include/mach/system.h