From patchwork Tue Nov 9 23:39:23 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lei Wen X-Patchwork-Id: 72011 Return-Path: X-Original-To: wd@gemini.denx.de Delivered-To: wd@gemini.denx.de Received: from diddl.denx.de (diddl.denx.de [10.0.0.6]) by gemini.denx.de (Postfix) with ESMTP id D884F1522C0 for ; Wed, 10 Nov 2010 00:42:23 +0100 (CET) Received: from diddl.denx.de (localhost.localdomain [127.0.0.1]) by diddl.denx.de (Postfix) with ESMTP id AF07C30D6963 for ; Wed, 10 Nov 2010 00:42:23 +0100 (CET) Received: from pop.mnet-online.de by diddl.denx.de with POP3 (fetchmail-6.3.17) for (single-drop); Wed, 10 Nov 2010 00:42:23 +0100 (CET) Received: from murder ([192.168.8.180]) by backend2 (Cyrus v2.2.12) with LMTPA; Wed, 10 Nov 2010 00:39:46 +0100 X-Sieve: CMU Sieve 2.2 Received: from mail.m-online.net (localhost [127.0.0.1]) by frontend1.mail.m-online.net (Cyrus v2.2.12) with LMTPA; Wed, 10 Nov 2010 00:39:46 +0100 Received: from scanner-2.m-online.net (scanner-2.mail.m-online.net [192.168.8.166]) by mail.m-online.net (Postfix) with ESMTP id 2BDAF1C00182; Wed, 10 Nov 2010 00:39:46 +0100 (CET) Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by mxin-2.m-online.net (Postfix) with ESMTP id 4CC3946C0BC; Wed, 10 Nov 2010 00:39:44 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B3E832813C; Wed, 10 Nov 2010 00:39:37 +0100 (CET) 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 0mD4OzgLxyOP; Wed, 10 Nov 2010 00:39:37 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 83DE02813F; Wed, 10 Nov 2010 00:39:32 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 275A02811E for ; Wed, 10 Nov 2010 00:39:29 +0100 (CET) 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 iTSemkrRq94e for ; Wed, 10 Nov 2010 00:39:27 +0100 (CET) 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-wy0-f172.google.com (mail-wy0-f172.google.com [74.125.82.172]) by theia.denx.de (Postfix) with ESMTP id 07FF328118 for ; Wed, 10 Nov 2010 00:39:25 +0100 (CET) Received: by wyb28 with SMTP id 28so41552wyb.3 for ; Tue, 09 Nov 2010 15:39:25 -0800 (PST) MIME-Version: 1.0 Received: by 10.227.163.7 with SMTP id y7mr7547643wbx.35.1289345963923; Tue, 09 Nov 2010 15:39:23 -0800 (PST) Received: by 10.227.72.135 with HTTP; Tue, 9 Nov 2010 15:39:23 -0800 (PST) In-Reply-To: <201011091733.23118.vapier@gentoo.org> References: <53612FE6B944314AAADB181E45A45B64133E6363FA@sc-vexch3.marvell.com> <201011091733.23118.vapier@gentoo.org> Date: Wed, 10 Nov 2010 07:39:23 +0800 Message-ID: From: Lei Wen To: Mike Frysinger Cc: Lei Wen , "u-boot@lists.denx.de" Subject: Re: [U-Boot] [PATCH] env_mmc: fix compile warning 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: , Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de X-Virus-Scanned: by amavisd-new at m-online.net Hi Mike, Please review this refined patch. >From a7c694f84bec6b0db26ece4c77d06585be5a6755 Mon Sep 17 00:00:00 2001 From: Lei Wen Date: Wed, 10 Nov 2010 07:44:03 +0800 Subject: [PATCH] env_mmc: fix compile warning hexport would complain implicit declaration, if we don't add the include file. env_mmc.c: In function 'saveenv': env_mmc.c:109: warning: implicit declaration of function 'hexport' Signed-off-by: Lei Wen --- common/env_mmc.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/common/env_mmc.c b/common/env_mmc.c index 3d7fceb..7c9392c 100644 --- a/common/env_mmc.c +++ b/common/env_mmc.c @@ -29,6 +29,7 @@ #include #include #include +#include #include /* references to names in env_common.c */