From patchwork Mon Sep 30 12:04:51 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thierry Reding X-Patchwork-Id: 279141 Return-Path: X-Original-To: incoming-imx@patchwork.ozlabs.org Delivered-To: patchwork-incoming-imx@bilbo.ozlabs.org Received: from casper.infradead.org (unknown [IPv6:2001:770:15f::2]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id CB3792C00BB for ; Mon, 30 Sep 2013 22:07:20 +1000 (EST) Received: from merlin.infradead.org ([2001:4978:20e::2]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1VQcFh-0006S3-Ms; Mon, 30 Sep 2013 12:07:01 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1VQcFf-0001N9-0K; Mon, 30 Sep 2013 12:06:59 +0000 Received: from mail-bk0-x236.google.com ([2a00:1450:4008:c01::236]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1VQcFc-0001Lg-Gu for linux-arm-kernel@lists.infradead.org; Mon, 30 Sep 2013 12:06:57 +0000 Received: by mail-bk0-f54.google.com with SMTP id mz12so2075990bkb.27 for ; Mon, 30 Sep 2013 05:06:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=OaHL2V4heQDz5Y9rtZ4EFTM+AgQ881tZ0wRKT4fP/2E=; b=WqlqrTAl/s2mbu/xqSuOIpmbJjw+yp/8MsgTS18YQo78eXvF3TYbtpdpftQ8fQSddd /0hfEv0p4+73SjqVEYoMUNSQrf7MMYDyDUDCwFZmTmw/nMAJDCzLZe9Ox4SVRnV/RedA L6GKOFH2DhD34AKVEqyl5may36gaSQX3C6pvkUECd3lFnN0SUx4JYbLLx3D9DlvUoqJh 153C1EguW+pSUZdXdzak3G3JZd2bJbcCRfhBA4jQebQP52SZ2EuA1cx2hjA/eUaxNoMi jUCGp2+1yepZiOSqF7ju0O4ohuqVC9T5hTof1KvX3fQrzkxdZphnz79ifvsI1NKktdsr t+7w== X-Received: by 10.204.232.15 with SMTP id js15mr289830bkb.50.1380542793624; Mon, 30 Sep 2013 05:06:33 -0700 (PDT) Received: from localhost (port-24208.pppoe.wtnet.de. [46.59.156.69]) by mx.google.com with ESMTPSA id b6sm95456bko.16.1969.12.31.16.00.00 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 30 Sep 2013 05:06:32 -0700 (PDT) From: Thierry Reding To: Sascha Hauer , Shawn Guo Subject: [PATCH] ARM: imx: Include linux/err.h Date: Mon, 30 Sep 2013 14:04:51 +0200 Message-Id: <1380542691-24756-1-git-send-email-treding@nvidia.com> X-Mailer: git-send-email 1.8.4 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130930_080656_690815_8013B779 X-CRM114-Status: GOOD ( 10.28 ) 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 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (thierry.reding[at]gmail.com) -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: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+incoming-imx=patchwork.ozlabs.org@lists.infradead.org List-Id: linux-imx-kernel.lists.patchwork.ozlabs.org The IS_ERR() macro is defined in the linux/err.h header file, so include it explicitly. Signed-off-by: Thierry Reding --- arch/arm/mach-imx/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-imx/cpu.c b/arch/arm/mach-imx/cpu.c index fae2c9a..ba3b498 100644 --- a/arch/arm/mach-imx/cpu.c +++ b/arch/arm/mach-imx/cpu.c @@ -1,4 +1,4 @@ - +#include #include #include #include