From patchwork Tue Dec 27 09:03:29 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Baruch Siach X-Patchwork-Id: 708935 X-Patchwork-Delegate: trini@ti.com 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 3tnwTH4c8Mz9t2T for ; Tue, 27 Dec 2016 23:41:07 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id C0778B38FC; Tue, 27 Dec 2016 13:41:02 +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 DHCkTDf4xqH2; Tue, 27 Dec 2016 13:41:02 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id CAF9AA7690; Tue, 27 Dec 2016 13:40:51 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 70418A7652 for ; Tue, 27 Dec 2016 10:11:33 +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 ORD0gbThpf4G for ; Tue, 27 Dec 2016 10:11:33 +0100 (CET) X-Greylist: delayed 445 seconds by postgrey-1.34 at theia; Tue, 27 Dec 2016 10:11:30 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 mx.tkos.co.il (guitar.tcltek.co.il [192.115.133.116]) by theia.denx.de (Postfix) with ESMTPS id 26A19A75CC for ; Tue, 27 Dec 2016 10:11:30 +0100 (CET) Received: from tarshish.tkos.co.il (unknown [10.0.8.6]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mx.tkos.co.il (Postfix) with ESMTPSA id 97A48440B5F; Tue, 27 Dec 2016 11:04:03 +0200 (IST) From: Baruch Siach To: u-boot@lists.denx.de Date: Tue, 27 Dec 2016 11:03:29 +0200 Message-Id: <70efe8fa596af3aa425badc98fbc58530e22c639.1482829409.git.baruch@tkos.co.il> X-Mailer: git-send-email 2.11.0 X-Mailman-Approved-At: Tue, 27 Dec 2016 13:40:44 +0100 Cc: Joe Hershberger , Baruch Siach Subject: [U-Boot] [PATCH] cmd: net: fix function name in comment X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" In commit 7044c6bb6 (net: cosmetic: Clean up DHCP variables and functions) BootpCopyNetParams() was renamed to store_net_params(). Update the reference in comment. Cc: Joe Hershberger Signed-off-by: Baruch Siach --- cmd/net.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/net.c b/cmd/net.c index bed76e4bcb08..df8b6c9b53f0 100644 --- a/cmd/net.c +++ b/cmd/net.c @@ -136,7 +136,7 @@ static void netboot_update_env(void) } #if !defined(CONFIG_BOOTP_SERVERIP) /* - * Only attempt to change serverip if net/bootp.c:BootpCopyNetParams() + * Only attempt to change serverip if net/bootp.c:store_net_params() * could have set it */ if (net_server_ip.s_addr) {