From patchwork Tue Mar 17 07:23:02 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: kim kyuwon X-Patchwork-Id: 12568 X-Patchwork-Delegate: khilman@deeprootsystems.com Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n2H7N6Hv026927 for ; Tue, 17 Mar 2009 07:23:06 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752777AbZCQHXG (ORCPT ); Tue, 17 Mar 2009 03:23:06 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752838AbZCQHXG (ORCPT ); Tue, 17 Mar 2009 03:23:06 -0400 Received: from wf-out-1314.google.com ([209.85.200.175]:43632 "EHLO wf-out-1314.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752777AbZCQHXE (ORCPT ); Tue, 17 Mar 2009 03:23:04 -0400 Received: by wf-out-1314.google.com with SMTP id 28so2378264wfa.4 for ; Tue, 17 Mar 2009 00:23:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:cc:content-type:content-transfer-encoding; bh=KHzDypURj8JSiZDY8s2kiQl2UBLzlhbv5v84uovlAQ4=; b=fayZM8glCzDgacbMdi1PmyRjryfn20+EX+HDH8MJasxs++j0lHebhsDa0GZfmNF4Oy Ys4A1fXPFI5uN+7VW83BubMwXxtSCV8gL0YEVYS25i2+gyp/4i9fekrguiNB8bB/7NRY 4ObZY33zgeCN/byF4sNsOE4pbYruMkaaFRQ7w= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=hYwNZQ2ZknJkANLi6pU5ut9yC7USTWxg00B6IKdSf3BKoS0FIt/6Wb8stbmqU4PRvc UZP+/o8luU71txxa4FBOWlBdCdviCOhUUaTC+AsZJoFjjcfmOLYXl6AhQT2sX80oX9MV fS93GQ/U/ESblgQ+WlAcNVsakJQmXxQbiThT0= MIME-Version: 1.0 Received: by 10.142.238.4 with SMTP id l4mr2625451wfh.339.1237274582404; Tue, 17 Mar 2009 00:23:02 -0700 (PDT) Date: Tue, 17 Mar 2009 16:23:02 +0900 Message-ID: <4d34a0a70903170023l5b94db2an204f1aaae46b14cf@mail.gmail.com> Subject: [PATCH 1/3] OMAP3: PM: include 'mach/irqs.h' From: Kim Kyuwon To: OMAP Cc: q1.kim@samsung.com, Kevin Hilman , Jouni Hogander , kyungmin.park@samsung.com Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org This patch fixes this compile error CC arch/arm/mach-omap2/cpuidle34xx.o arch/arm/mach-omap2/cpuidle34xx.c:100: error: implicit declaration of function 'omap_irq_pending' make[1]: *** [arch/arm/mach-omap2/cpuidle34xx.o] Error 1 The omap_irq_pending() function is declared in 'arch/arm/plat-omap/include/mach/irqs.h' Signed-off-by: Kim Kyuwon --- arch/arm/mach-omap2/cpuidle34xx.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-omap2/cpuidle34xx.c b/arch/arm/mach-omap2/cpuidle34xx.c index 62fbb2e..5e50c46 100644 --- a/arch/arm/mach-omap2/cpuidle34xx.c +++ b/arch/arm/mach-omap2/cpuidle34xx.c @@ -28,6 +28,7 @@ #include #include #include +#include #include "pm.h"