From patchwork Thu Dec 23 16:04:26 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wolfgang Denk X-Patchwork-Id: 76521 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 09F9DB70A7 for ; Fri, 24 Dec 2010 03:04:40 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id E0A38280D6; Thu, 23 Dec 2010 17:04:37 +0100 (CET) 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 ggHGyH6-Ax9p; Thu, 23 Dec 2010 17:04:37 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 42A06280D8; Thu, 23 Dec 2010 17:04:36 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 21768280D8 for ; Thu, 23 Dec 2010 17:04:34 +0100 (CET) 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 6iUt4BM3eGV2 for ; Thu, 23 Dec 2010 17:04:32 +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-out.m-online.net (mail-out.m-online.net [212.18.0.10]) by theia.denx.de (Postfix) with ESMTP id 0814E280D6 for ; Thu, 23 Dec 2010 17:04:30 +0100 (CET) Received: from frontend1.mail.m-online.net (frontend1.mail.intern.m-online.net [192.168.8.180]) by mail-out.m-online.net (Postfix) with ESMTP id 57A7C18004EB; Thu, 23 Dec 2010 17:04:29 +0100 (CET) X-Auth-Info: nHAASQ+fpkw/hYhdy3SO0LkgluCEqmW6TTm/XyPBmdw= Received: from diddl.denx.de (ppp-188-174-79-57.dynamic.mnet-online.de [188.174.79.57]) by smtp-auth.mnet-online.de (Postfix) with ESMTPA id BC2101C00158; Thu, 23 Dec 2010 17:04:29 +0100 (CET) Received: from gemini.denx.de (gemini.denx.de [10.0.0.2]) by diddl.denx.de (Postfix) with ESMTP id 99AD230E60A8; Thu, 23 Dec 2010 17:04:29 +0100 (CET) Received: by gemini.denx.de (Postfix, from userid 500) id 7D517152437; Thu, 23 Dec 2010 17:04:29 +0100 (CET) From: Wolfgang Denk To: u-boot@lists.denx.de Date: Thu, 23 Dec 2010 17:04:26 +0100 Message-Id: <1293120266-28753-1-git-send-email-wd@denx.de> X-Mailer: git-send-email 1.7.3.3 Subject: [U-Boot] [PATCH] cmd_net.c: fix build breakage 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 Commit 722b061 "autocomplete: remove runtime handler install" caused some boards (like NETTA2_V2) to break with errors like these: cmd_net.c:296: error: expected expression before ',' token Fix this. Signed-off-by: Wolfgang Denk Cc: Mike Frysinger --- common/cmd_net.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/common/cmd_net.c b/common/cmd_net.c index 973fa21..00e0ea8 100644 --- a/common/cmd_net.c +++ b/common/cmd_net.c @@ -296,6 +296,7 @@ int do_cdp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) U_BOOT_CMD( cdp, 1, 1, do_cdp, "Perform CDP network configuration", + "\n" ); #endif