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 E2DF3C001DB for ; Fri, 4 Aug 2023 19:45:27 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 5485F86987; Fri, 4 Aug 2023 21:45:26 +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="iIqI0GmU"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 7D0058698D; Fri, 4 Aug 2023 21:45:24 +0200 (CEST) Received: from relay3-d.mail.gandi.net (relay3-d.mail.gandi.net [IPv6:2001:4b98:dc4:8::223]) (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 94C3686987 for ; Fri, 4 Aug 2023 21:45:22 +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 A227B6000A; Fri, 4 Aug 2023 19:45:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1691178322; 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=qYIpXanRF816qV90IFPLragaFi6l5GzvNwpNPJOKDaM=; b=iIqI0GmUml4RQzBso2YZ7J9Yca1WnKSzAlYGLxr1jSR7n2dZ5ZNqU13DJsiedF44oxu/EP yO50Udrtgyjze2W6iM/8kl9DB9KJwDtf3bT+YIloxnj+kmCMb555jP9SSZhCSS5i7JPYfj k2Qb+fNHfsjw0FrEmiqhWEO+WsvQYqgRh2kFIg70myNCWXxyQsEZ6fGxjOyFJlLcB2Jj4D kok/RXToyex+TIwaq4F8JxiNhEsyzUk1Q5UOB2qVjrIcEuBCo8X2aSRWktFAcwtiMKSwwu zVul4+Ko26vP6uEXOV3zarDW2mkFG2AkG6JX7q4Pv04AvlCUHyuaG+hfuKtp3A== Date: Fri, 4 Aug 2023 21:45:20 +0200 From: Miquel Raynal To: Marek Vasut Cc: u-boot@lists.denx.de, Kevin Hilman , Lukasz Majewski , Simon Glass Subject: Re: [PATCH v5 2/3] usb: gadget: ether: Move probe function above driver structure Message-ID: <20230804214520.11c1f838@xps-13> In-Reply-To: <20230804154111.97042-2-marex@denx.de> References: <20230804154111.97042-1-marex@denx.de> <20230804154111.97042-2-marex@denx.de> 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 Marek, marex@denx.de wrote on Fri, 4 Aug 2023 17:41:10 +0200: > Move the driver probe function above the driver structure, so it > can be placed alongside other related functions, like upcoming > remove function. No functional change. >=20 > Signed-off-by: Marek Vasut > --- > Cc: Kevin Hilman > Cc: Lukasz Majewski > Cc: Miquel Raynal > Cc: Simon Glass > --- Tested-by: Miquel Raynal Thanks, Miqu=C3=A8l