From patchwork Tue Nov 22 09:35:28 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: 5269 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 7826323E10 for ; Tue, 22 Nov 2011 09:38:05 +0000 (UTC) Received: from mail-gx0-f180.google.com (mail-gx0-f180.google.com [209.85.161.180]) by fiordland.canonical.com (Postfix) with ESMTP id 409A8A186E4 for ; Tue, 22 Nov 2011 09:38:05 +0000 (UTC) Received: by mail-gx0-f180.google.com with SMTP id v5so7919414ggn.11 for ; Tue, 22 Nov 2011 01:38:05 -0800 (PST) Received: by 10.152.105.226 with SMTP id gp2mr11208618lab.28.1321954684481; Tue, 22 Nov 2011 01:38:04 -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.41.198 with SMTP id h6cs169500lal; Tue, 22 Nov 2011 01:38:04 -0800 (PST) Received: by 10.236.9.36 with SMTP id 24mr25397680yhs.62.1321954682468; Tue, 22 Nov 2011 01:38:02 -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 66si9512965yhs.145.2011.11.22.01.38.01 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 22 Nov 2011 01:38:02 -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 13so6636167ywm.37 for ; Tue, 22 Nov 2011 01:38:01 -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=OOZ9papFZhI/DbjTl8fT7PBMnQxdrsskcqTL/LNOvJkPhIvDCoGp6ckuP+FJviKSbM heV5p3exMKgxfLCs0DeeXyupBMf3aXF9EDTZZIA1gWrP8aoDRkZqcDcPD210nAZhNLPT /afdd3+erVfQN8s40GHt1knxAFgA/05hTfDHw= Received: by 10.50.94.229 with SMTP id df5mr18898931igb.27.1321954681600; Tue, 22 Nov 2011 01:38:01 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id el2sm10208537ibb.10.2011.11.22.01.37.58 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 22 Nov 2011 01:38:01 -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 V3 2/6] ARM: s5p: remove useless churn in sleep.S Date: Tue, 22 Nov 2011 15:05:28 +0530 Message-Id: <1321954532-18724-3-git-send-email-amit.kachhap@linaro.org> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1321954532-18724-1-git-send-email-amit.kachhap@linaro.org> References: <1321954532-18724-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)