From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 035EFC001DE for ; Fri, 4 Aug 2023 17:09:15 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 2444E8691F; Fri, 4 Aug 2023 19:09:14 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=reject dis=none) header.from=bootlin.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=bootlin.com header.i=@bootlin.com header.b="PMerV6MT"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 222A1868D9; Fri, 4 Aug 2023 19:09:12 +0200 (CEST) Received: from relay9-d.mail.gandi.net (relay9-d.mail.gandi.net [IPv6:2001:4b98:dc4:8::229]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 3CDAF8691F for ; Fri, 4 Aug 2023 19:09:10 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=reject dis=none) header.from=bootlin.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=miquel.raynal@bootlin.com Received: by mail.gandi.net (Postfix) with ESMTPSA id 7507CFF802; Fri, 4 Aug 2023 17:09:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1691168949; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Jq08At4EZHzSpyvKa1bQW2Bb7fSGcG1G3j9iCU0f4nk=; b=PMerV6MTtVcLv8Sj3WsEfg35GNz0Z/wN/quo2y8VZq1aqX/DPYs8RBKQiTt4M44z9/vzc7 01hnXu9foLb7HxszLsW+Biw8CryY8oOzK2Q9AAjDz3ROaYiRjy0KLSBiMYCJcjnvLJcyPX OF4CdDjDf3R/aFxNfyp8PJt96G8y6CIAu79p0TutoBGa1DeHp/K777rGtexPS8IbpQtBGt A0s+Euymf4zZHag2mu8AIyvONRJS9yV7UJIM7M9QYMaY4V0K4P5QKJMSyLDVperz7bylNb YeSihKaBvCxiMbka8BpC+rQ8sgc3hJrKDelca99w7+KPPyLrtUGNfVgxJXT29w== Date: Fri, 4 Aug 2023 19:09:07 +0200 From: Miquel Raynal To: Tom Rini Cc: u-boot@lists.denx.de, Marek Vasut Subject: Re: [PATCH] cmd: Enable BIND by default if we have USB_ETHER Message-ID: <20230804190907.23b6de0d@xps-13> In-Reply-To: <20230804160621.1305212-1-trini@konsulko.com> References: <20230804154111.97042-3-marex@denx.de> <20230804160621.1305212-1-trini@konsulko.com> Organization: Bootlin X-Mailer: Claws Mail 4.0.0 (GTK+ 3.24.33; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-GND-Sasl: miquel.raynal@bootlin.com X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.8 at phobos.denx.de X-Virus-Status: Clean Hi Tom, trini@konsulko.com wrote on Fri, 4 Aug 2023 12:06:21 -0400: > The nature of the network stack means that if we are going to use the > gadget mode USB network driver there's no easy path to implicitly > bind/unbind the driver. Enable the "bind" command by default here so > that we can bind/unbind this as needed. >=20 > Signed-off-by: Tom Rini > --- > Cc: Marek Vasut > Cc: Miquel Raynal Reviewed-by: Miquel Raynal Thanks, Miqu=C3=A8l