From patchwork Wed Mar 28 10:49:47 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Lee Jones X-Patchwork-Id: 7506 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 EDD3B23E2F for ; Wed, 28 Mar 2012 10:50:08 +0000 (UTC) Received: from mail-iy0-f180.google.com (mail-iy0-f180.google.com [209.85.210.180]) by fiordland.canonical.com (Postfix) with ESMTP id AD47AA1846C for ; Wed, 28 Mar 2012 10:50:08 +0000 (UTC) Received: by iage36 with SMTP id e36so1753511iag.11 for ; Wed, 28 Mar 2012 03:50:08 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:mime-version:content-type :content-transfer-encoding:x-gm-message-state; bh=Gq3QiMvz39eKY+STzJ9hfELMX6kv5LgW7OPbGjHtk20=; b=MsOFX7BI6SyP4fbzoTzVj2YP5jtBa1FGOp3pCHCfrHkjinX6p1zQGdZ2eXQ/dbVFcJ prDmgZlmgggaI6lcqz/Uu83L+9i8LXs+0HVzS9YpUSezw2Fbpj2Mw49zwC82wdqbnCq9 egYuZy0m4GqoXWX6qPrcHPhalzAtJr/aB+cLQE3S6+NPBb1iu8JQ7OXoRcHtYth6Gydp faxvzy0OM1MEQROIBPcTD6cZYZLiSy9YVVY1gpDY4ViWX2TsHU12p8cTbcJKo4nrHzz7 JBhfpFo+/zqliIGwMe0QN/II9Bbprxy6w4UWhMJ3ZcFHsJ/PqwV+OVJ8cMfg4LF8Cm2Q B0fw== Received: by 10.50.45.234 with SMTP id q10mr1651214igm.54.1332931808120; Wed, 28 Mar 2012 03:50:08 -0700 (PDT) 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.231.5.205 with SMTP id 13csp46122ibw; Wed, 28 Mar 2012 03:50:07 -0700 (PDT) Received: by 10.216.225.12 with SMTP id y12mr16508437wep.39.1332931806346; Wed, 28 Mar 2012 03:50:06 -0700 (PDT) Received: from mail-wg0-f50.google.com (mail-wg0-f50.google.com [74.125.82.50]) by mx.google.com with ESMTPS id j9si22611454wia.32.2012.03.28.03.50.05 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 28 Mar 2012 03:50:06 -0700 (PDT) Received-SPF: neutral (google.com: 74.125.82.50 is neither permitted nor denied by best guess record for domain of lee.jones@linaro.org) client-ip=74.125.82.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 74.125.82.50 is neither permitted nor denied by best guess record for domain of lee.jones@linaro.org) smtp.mail=lee.jones@linaro.org Received: by wgbds12 with SMTP id ds12so784801wgb.31 for ; Wed, 28 Mar 2012 03:50:05 -0700 (PDT) Received: by 10.180.79.72 with SMTP id h8mr6048792wix.1.1332931805789; Wed, 28 Mar 2012 03:50:05 -0700 (PDT) Received: from localhost.localdomain (cpc1-aztw13-0-0-cust473.18-1.cable.virginmedia.com. [77.102.241.218]) by mx.google.com with ESMTPS id fw5sm57053505wib.0.2012.03.28.03.50.04 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 28 Mar 2012 03:50:05 -0700 (PDT) From: Lee Jones To: linux-arm-kernel@lists.infradead.org Cc: arnd@arndb.de, marc.zyngier@arm.com, Lee Jones Subject: [PATCH] ARM: ux500: fix compile error in new timer code Date: Wed, 28 Mar 2012 11:49:47 +0100 Message-Id: <1332931787-27741-1-git-send-email-lee.jones@linaro.org> X-Mailer: git-send-email 1.7.5.4 MIME-Version: 1.0 X-Gm-Message-State: ALoCoQkCg46ebA8J/agNddmWzNVy5FVmYhanf5JQDA0hsThnjLJhNjs/4dibFH28pFhEC94/BPxH This patch fixes the errors below: error: implicit declaration of function ‘pr_err’ error: implicit declaration of function ‘BUG’ Signed-off-by: Lee Jones --- arch/arm/mach-ux500/timer.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-ux500/timer.c b/arch/arm/mach-ux500/timer.c index e9d5807..21ec778 100644 --- a/arch/arm/mach-ux500/timer.c +++ b/arch/arm/mach-ux500/timer.c @@ -4,6 +4,8 @@ * License Terms: GNU General Public License v2 * Author: Mattias Wallin for ST-Ericsson */ +#include +#include #include #include #include