From patchwork Thu Jan 10 00:39:38 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tomasz Figa X-Patchwork-Id: 1958041 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork2.kernel.org (Postfix) with ESMTP id 8C280DF2EB for ; Thu, 10 Jan 2013 00:43:27 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1Tt6CT-0001XY-5o; Thu, 10 Jan 2013 00:40:53 +0000 Received: from mail-ea0-f179.google.com ([209.85.215.179]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1Tt6CP-0001WY-D5 for linux-arm-kernel@lists.infradead.org; Thu, 10 Jan 2013 00:40:50 +0000 Received: by mail-ea0-f179.google.com with SMTP id i12so903307eaa.10 for ; Wed, 09 Jan 2013 16:40:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer; bh=S+3VkM3WGuEaZs5naJcmwWcc7UA9ON7+9cDd/tppUbo=; b=ylFZrqZfZevbdqRta5viUwC1G/Ti+svjy12of3NoE0dvzbA/lZ1oLbw69vIv8NF7Cw diENKbYrxYuXqVJzZgf/EdFqgqN/5j/HeEZCPXK9UEgaebn3fzi1y/wIMGUatqZITIpc BSbHoXMLb7hQ2c1Vtoef8XiPipssT+EpWLvxSn6EOyo/QuusMhHFyIkTPKh7yijV/A4+ 3pCSh1PTvvGM3KppR+HZ423qlGOQTsFjgtebM1Vx2ZZgtfl19qt0oq2pqqZHEAk9Vmr9 s9hRovKOLdyKYRLex4LWdXwYUD7xMdrUd1Rq+yYTmIgt9P/YLY8k5Zfiwax2MMaS/aka DrNw== X-Received: by 10.14.0.133 with SMTP id 5mr185227935eeb.29.1357778447700; Wed, 09 Jan 2013 16:40:47 -0800 (PST) Received: from flatron.tomeq (87-207-52-162.dynamic.chello.pl. [87.207.52.162]) by mx.google.com with ESMTPS id k4sm144667922eep.15.2013.01.09.16.40.46 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 09 Jan 2013 16:40:47 -0800 (PST) From: Tomasz Figa To: linux-samsung-soc@vger.kernel.org Subject: [PATCH] ARM: s3c64xx: cpuidle: Fix missing header error with CONFIG_CPU_IDLE enabled Date: Thu, 10 Jan 2013 01:39:38 +0100 Message-Id: <1357778378-5278-1-git-send-email-tomasz.figa@gmail.com> X-Mailer: git-send-email 1.8.1 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130109_194049_651983_29F672DB X-CRM114-Status: GOOD ( 10.43 ) X-Spam-Score: -2.7 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.7 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (tomasz.figa[at]gmail.com) -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.215.179 listed in list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature Cc: kgene.kim@samsung.com, Tomasz Figa , linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org Recently the regs-syscon-power.h header was moved from mach-s3c64xx/include/mach to mach-s3c64xx/, but cpuidle.c was not updated to include the header from its new location, which caused build error with CONFIG_CPU_IDLE enabled. This patch fixed the problem by updating the include line with proper header location. Signed-off-by: Tomasz Figa --- arch/arm/mach-s3c64xx/cpuidle.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arch/arm/mach-s3c64xx/cpuidle.c b/arch/arm/mach-s3c64xx/cpuidle.c index e3e455b..50c66fe 100644 --- a/arch/arm/mach-s3c64xx/cpuidle.c +++ b/arch/arm/mach-s3c64xx/cpuidle.c @@ -20,8 +20,7 @@ #include -#include - +#include "regs-syscon-power.h" #include "regs-sys.h" static int s3c64xx_enter_idle(struct cpuidle_device *dev,