From patchwork Tue Nov 20 09:25:53 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Constantine Shulyupin X-Patchwork-Id: 1772191 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork1.kernel.org (Postfix) with ESMTP id 434C53FC5A for ; Tue, 20 Nov 2012 09:29:00 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1Tak6Q-0003Ts-J5; Tue, 20 Nov 2012 09:26:46 +0000 Received: from oproxy6-pub.bluehost.com ([67.222.54.6]) by merlin.infradead.org with smtp (Exim 4.76 #1 (Red Hat Linux)) id 1Tak6K-0003QY-LE for linux-arm-kernel@lists.infradead.org; Tue, 20 Nov 2012 09:26:42 +0000 Received: (qmail 25849 invoked by uid 0); 20 Nov 2012 09:26:15 -0000 Received: from unknown (HELO box668.bluehost.com) (66.147.244.168) by cpoproxy3.bluehost.com with SMTP; 20 Nov 2012 09:26:15 -0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=makelinux.com; s=default; h=Message-Id:Date:Subject:Cc:To:From; bh=wE7DWH+TZgBJi6Z3N8S799NS3MQbz0F8UNPRqDriwvU=; b=VDtUFbX08mQF8M0X0plfwrE9UCEIdvCcjD4MKEBKnmwgkkeWUDJXlMw5ydFPm7ojGe51Rec0lhiSdQeeOm9ZCj6fVICJyRwR3ZTc/zz4n2Ax5n+tjI+aTEjt9F3ZheNd; Received: from [77.126.59.43] (port=39604 helo=makelinux.home) by box668.bluehost.com with esmtpa (Exim 4.76) (envelope-from ) id 1Tak5u-0007O6-P2; Tue, 20 Nov 2012 02:26:15 -0700 From: Constantine Shulyupin To: paul@pwsan.com, Tony Lindgren , Russell King , linux-arm-kernel@lists.infradead.org, linux-omap@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] fix compilation error in cm_common.c Date: Tue, 20 Nov 2012 11:25:53 +0200 Message-Id: <1353403553-13525-1-git-send-email-const@MakeLinux.com> X-Mailer: git-send-email 1.7.9.5 X-Identified-User: {1470:box668.bluehost.com:makelinu:makelinux.net} {sentby:smtp auth 77.126.59.43 authed with poster@makelinux.net} X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20121120_042641_940603_03154EE8 X-CRM114-Status: UNSURE ( 8.42 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -2.0 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.0 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no trust [67.222.54.6 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: Constantine Shulyupin 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 From: Constantine Shulyupin Added required linux/errno.h Signed-off-by: Constantine Shulyupin --- arch/arm/mach-omap2/cm_common.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-omap2/cm_common.c b/arch/arm/mach-omap2/cm_common.c index 3246cef..3fafc27 100644 --- a/arch/arm/mach-omap2/cm_common.c +++ b/arch/arm/mach-omap2/cm_common.c @@ -13,6 +13,7 @@ #include #include +#include #include "cm2xxx.h" #include "cm3xxx.h"