From patchwork Sat Jul 30 22:37:48 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wolfgang Denk X-Patchwork-Id: 107521 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id C1BD7B6F72 for ; Sun, 31 Jul 2011 08:38:00 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 67AC628104; Sun, 31 Jul 2011 00:37:58 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id WczZoDkc49xP; Sun, 31 Jul 2011 00:37:58 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 031A2280F8; Sun, 31 Jul 2011 00:37:56 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 3FF0E280F8 for ; Sun, 31 Jul 2011 00:37:54 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id h8YlZTPSc6z5 for ; Sun, 31 Jul 2011 00:37:53 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail-out.m-online.net (mail-out.m-online.net [212.18.0.9]) by theia.denx.de (Postfix) with ESMTP id 4ADC4280F7 for ; Sun, 31 Jul 2011 00:37:51 +0200 (CEST) Received: from frontend1.mail.m-online.net (unknown [192.168.8.180]) by mail-out.m-online.net (Postfix) with ESMTP id CBFD61C021EE; Sun, 31 Jul 2011 00:37:50 +0200 (CEST) X-Auth-Info: XDEiJQ7qog+aY3uBzgzdMgb5IQ5aU6AalG2DuU+ZDUw= Received: from diddl.denx.de (host-80-81-18-216.customer.m-online.net [80.81.18.216]) by smtp-auth.mnet-online.de (Postfix) with ESMTPA id C58411C00059; Sun, 31 Jul 2011 00:37:50 +0200 (CEST) Received: from gemini.denx.de (unknown [10.0.0.2]) by diddl.denx.de (Postfix) with ESMTP id 9BF96C913109; Sun, 31 Jul 2011 00:37:50 +0200 (CEST) Received: by gemini.denx.de (Postfix, from userid 500) id 8DB8612B7AE4; Sun, 31 Jul 2011 00:37:50 +0200 (CEST) From: Wolfgang Denk To: u-boot@lists.denx.de Date: Sun, 31 Jul 2011 00:37:48 +0200 Message-Id: <1312065468-23436-1-git-send-email-wd@denx.de> X-Mailer: git-send-email 1.7.6 Cc: Albert Aribaud Subject: [U-Boot] [PATCH] ARM MX31: fix clock.h: warning: function declaration isn't a prototype X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Signed-off-by: Wolfgang Denk Cc: Stefano Babic Cc: Albert Aribaud --- arch/arm/include/asm/arch-mx31/clock.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/include/asm/arch-mx31/clock.h b/arch/arm/include/asm/arch-mx31/clock.h index fb035c4..d4565ac 100644 --- a/arch/arm/include/asm/arch-mx31/clock.h +++ b/arch/arm/include/asm/arch-mx31/clock.h @@ -32,7 +32,7 @@ enum mxc_clock { }; unsigned int mxc_get_clock(enum mxc_clock clk); -extern u32 imx_get_uartclk(); +extern uint32_t imx_get_uartclk(void); extern void mx31_gpio_mux(unsigned long mode); extern void mx31_set_pad(enum iomux_pins pin, u32 config);