From patchwork Fri Nov 11 06:29:34 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amit Daniel Kachhap X-Patchwork-Id: 5057 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id A9F5823E01 for ; Fri, 11 Nov 2011 06:30:19 +0000 (UTC) Received: from mail-lpp01m010-f52.google.com (mail-lpp01m010-f52.google.com [209.85.215.52]) by fiordland.canonical.com (Postfix) with ESMTP id 8908CA18397 for ; Fri, 11 Nov 2011 06:30:19 +0000 (UTC) Received: by mail-lpp01m010-f52.google.com with SMTP id i5so58269lah.11 for ; Thu, 10 Nov 2011 22:30:19 -0800 (PST) Received: by 10.152.144.136 with SMTP id sm8mr6086275lab.33.1320993019427; Thu, 10 Nov 2011 22:30:19 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.152.40.7 with SMTP id t7cs37420lak; Thu, 10 Nov 2011 22:30:19 -0800 (PST) Received: by 10.52.88.109 with SMTP id bf13mr18440933vdb.86.1320993017441; Thu, 10 Nov 2011 22:30:17 -0800 (PST) Received: from mail-yw0-f50.google.com (mail-yw0-f50.google.com [209.85.213.50]) by mx.google.com with ESMTPS id a9si320440ybc.41.2011.11.10.22.30.16 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 10 Nov 2011 22:30:17 -0800 (PST) Received-SPF: pass (google.com: domain of amitdanielk@gmail.com designates 209.85.213.50 as permitted sender) client-ip=209.85.213.50; Authentication-Results: mx.google.com; spf=pass (google.com: domain of amitdanielk@gmail.com designates 209.85.213.50 as permitted sender) smtp.mail=amitdanielk@gmail.com; dkim=pass (test mode) header.i=@gmail.com Received: by ywm13 with SMTP id 13so1359505ywm.37 for ; Thu, 10 Nov 2011 22:30:16 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=nxJYlfXjPJcbUHpmbX2/QeXrbjDy42epx8cuGymyc5k=; b=gOiJnUtfKUMXZZX7bi9wYxVtxiXO2GDrRT9ywz8PXE41DresvfSkV8l9Xw44C7JppM bMrRsob+ADFtBQw8qjwOwyeJ/v4HZwTm4JdSy+m0YLvqMJWrtRmSca7X1u8ybjzJxYTP 7ilY3nk0lZyfcQ0krE6cSreInVlNJvg4H9MSw= Received: by 10.68.19.129 with SMTP id f1mr7610332pbe.3.1320993016518; Thu, 10 Nov 2011 22:30:16 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id jm5sm27653704pbc.1.2011.11.10.22.30.12 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 10 Nov 2011 22:30:15 -0800 (PST) Sender: amit kachhap From: Amit Daniel Kachhap To: linux-samsung-soc@vger.kernel.org Cc: linux-arm-kernel@lists.infradead.org, kgene.kim@samsung.com, amit.kachhap@linaro.org, patches@linaro.org Subject: [PATCH V2 2/5] ARM: exynos4: remove useless churn in sleep.S Date: Fri, 11 Nov 2011 11:59:34 +0530 Message-Id: <1320992977-11589-3-git-send-email-amit.kachhap@linaro.org> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1320992977-11589-1-git-send-email-amit.kachhap@linaro.org> References: <1320992977-11589-1-git-send-email-amit.kachhap@linaro.org> This patch cleans up sleep code in preparation for L2 resume code and hotplug functions Signed-off-by: Lorenzo Pieralisi Signed-off-by: Amit Daniel Kachhap --- arch/arm/plat-s5p/sleep.S | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/arch/arm/plat-s5p/sleep.S b/arch/arm/plat-s5p/sleep.S index 0fd591b..c371ba2 100644 --- a/arch/arm/plat-s5p/sleep.S +++ b/arch/arm/plat-s5p/sleep.S @@ -23,7 +23,6 @@ */ #include -#include .text @@ -44,6 +43,9 @@ * other way of restoring the stack pointer after sleep, and we * must not write to the code segment (code is read-only) */ + .align + .data ENTRY(s3c_cpu_resume) b cpu_resume +ENDPROC(s3c_cpu_resume)