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 90F80C001DF for ; Fri, 4 Aug 2023 19:45:47 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 02F178694D; Fri, 4 Aug 2023 21:45:46 +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="nEXUWhme"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 1DF1A86959; Fri, 4 Aug 2023 21:45:45 +0200 (CEST) Received: from relay2-d.mail.gandi.net (relay2-d.mail.gandi.net [IPv6:2001:4b98:dc4:8::222]) (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 30BA586664 for ; Fri, 4 Aug 2023 21:45:43 +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 3B89740002; Fri, 4 Aug 2023 19:45:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1691178342; 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=nEXUWhmeqRG39L7OSxXVWs3eTXGiTbIT1v4K5LxA4X6I9aocymhiKyBaButsfMYtH4JhG7 xiJ+BqTzemFWOhsgamK4R6mvoE43EBdaWffJJ0TCGDV9ZVVJ0p+GMEbtFumMHJbxruLWKn Qx8K0DNU7nDfltQt3v1FKzl+8agb+dVTcJZLFmlHz1TagHDksNLYwpIbhYhlGDziTKP5fq CnQlTWDMqmqRyE75GabxEuArPvialiQeOaFXgdxlTz0Ng683UWR7Fqz2GYFJ+EwEQFnJnd al6zDjiND8qJTG18jYeRA88HCYYuCotFvQALor/GHCYPJbey2Kc+9afpZk00xQ== Date: Fri, 4 Aug 2023 21:45:40 +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: <20230804214540.2214006d@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