From patchwork Wed Jan 4 10:37:33 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Linus Walleij X-Patchwork-Id: 6046 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 C77AA23E07 for ; Wed, 4 Jan 2012 10:37:40 +0000 (UTC) Received: from mail-bk0-f52.google.com (mail-bk0-f52.google.com [209.85.214.52]) by fiordland.canonical.com (Postfix) with ESMTP id B01E4A1812B for ; Wed, 4 Jan 2012 10:37:40 +0000 (UTC) Received: by bke17 with SMTP id 17so30400bke.11 for ; Wed, 04 Jan 2012 02:37:40 -0800 (PST) Received: by 10.205.132.148 with SMTP id hu20mr10465862bkc.96.1325673460371; Wed, 04 Jan 2012 02:37:40 -0800 (PST) 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.205.82.144 with SMTP id ac16cs365036bkc; Wed, 4 Jan 2012 02:37:40 -0800 (PST) Received: by 10.152.135.105 with SMTP id pr9mr23671067lab.19.1325673458934; Wed, 04 Jan 2012 02:37:38 -0800 (PST) Received: from mail.df.lth.se (mail.df.lth.se. [194.47.250.12]) by mx.google.com with ESMTPS id sy5si21937174lab.70.2012.01.04.02.37.38 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 04 Jan 2012 02:37:38 -0800 (PST) Received-SPF: neutral (google.com: 194.47.250.12 is neither permitted nor denied by best guess record for domain of linus.walleij@linaro.org) client-ip=194.47.250.12; Authentication-Results: mx.google.com; spf=neutral (google.com: 194.47.250.12 is neither permitted nor denied by best guess record for domain of linus.walleij@linaro.org) smtp.mail=linus.walleij@linaro.org Received: from Fecusia (c83-249-216-194.bredband.comhem.se [83.249.216.194]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.df.lth.se (Postfix) with ESMTPSA id DADF465D48; Wed, 4 Jan 2012 11:37:36 +0100 (CET) Received: by Fecusia (sSMTP sendmail emulation); Wed, 4 Jan 2012 11:37:35 +0100 From: Linus Walleij To: linux-arm-kernel@lists.infradead.org Cc: Linus Walleij Subject: [PATCH] clps711x: fix compilation breakage Date: Wed, 4 Jan 2012 11:37:33 +0100 Message-Id: <1325673453-22278-1-git-send-email-linus.walleij@linaro.org> X-Mailer: git-send-email 1.7.6.4 The restart patches defined a new restart function in common.c but it needs to be declared in common.h to compile properly. Signed-off-by: Linus Walleij --- arch/arm/mach-clps711x/common.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-clps711x/common.h b/arch/arm/mach-clps711x/common.h index 2b8b801..fc0f065 100644 --- a/arch/arm/mach-clps711x/common.h +++ b/arch/arm/mach-clps711x/common.h @@ -9,3 +9,4 @@ struct sys_timer; extern void clps711x_map_io(void); extern void clps711x_init_irq(void); extern struct sys_timer clps711x_timer; +extern void clps711x_restart(char mode, const char *cmd);