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 F361CCD4F46 for ; Fri, 22 Sep 2023 10:00:20 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 50A3886660; Fri, 22 Sep 2023 12:00:19 +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="iGogymaw"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 4C7FD86898; Fri, 22 Sep 2023 12:00:18 +0200 (CEST) Received: from relay5-d.mail.gandi.net (relay5-d.mail.gandi.net [217.70.183.197]) (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 4CEDB864E9 for ; Fri, 22 Sep 2023 12:00:16 +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 E5D091C0008; Fri, 22 Sep 2023 10:00:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1695376816; 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=n98XmpEpETfGijneQ0iEGLALMG8Uoe6x1BPfpumqZAk=; b=iGogymaw3sAynlsdDkstrarPwc4Ke81CFnESSwq0NqJM449eTOhJGX9kmScuCJIeToEAdJ hXRTvFOhHwtWRyfL48Y5p+PPqEOaE4zC2OmvxWV3QACKFQ4kbTxCb/wz+yyNABJryolIcj 7FdS+rCKmit514nBLJY0geUNAVygD2xcLSMuFBT02ERsB0s8UvOZK3NLrngOzWI8Eux9uC 9teXMpuuu4ZTBZTRqEQWLF/LIgUXvUgU9+DelGza/aNAB2XiYiTaCtu6X49XwNFvCTdSnN 8n7dH8bMOYaK4XFJdRBDYrL9NjVSLe7Q/7yXY2I/BZpz0omkveV788YZ8RKRtA== Date: Fri, 22 Sep 2023 12:00:12 +0200 From: Miquel Raynal To: Marek Vasut Cc: u-boot@lists.denx.de, Mattijs Korpershoek , Angus Ainslie , Dmitrii Merkurev , Eddie Cai , Kever Yang , Lukasz Majewski , Nishanth Menon , Patrice Chotard , Patrick Delaunay , Philipp Tomsich , Simon Glass , Stefan Roese , kernel@puri.sm Subject: Re: [PATCH v2 01/17] dm: usb: udc: Factor out plain udevice handler functions Message-ID: <20230922120012.6e24645f@xps-13> In-Reply-To: <20230901095003.352930-1-marex@denx.de> References: <20230901095003.352930-1-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, I'm answering here as there is no cover letter. Just to let you know I'm still concerned by the series and want to test it but did not had the time to do so recently. Hopefully next week. Sorry for the delay. Miqu=C3=A8l marex@denx.de wrote on Fri, 1 Sep 2023 11:49:47 +0200: > Pull the functionality of UDC uclass that operates on plain udevice > and does not use this dev_array array into separate functions and > expose those functions, so that as much code as possible can be > switched over to these functions and the dev_array can be dropped. >=20 > Reviewed-by: Mattijs Korpershoek > Signed-off-by: Marek Vasut > --- > Cc: Angus Ainslie > Cc: Dmitrii Merkurev > Cc: Eddie Cai > Cc: Kever Yang > Cc: Lukasz Majewski > Cc: Miquel Raynal > Cc: Mattijs Korpershoek > Cc: Nishanth Menon > Cc: Patrice Chotard > Cc: Patrick Delaunay > Cc: Philipp Tomsich > Cc: Simon Glass > Cc: Stefan Roese > Cc: kernel@puri.sm > --- > V2: Add RB from Mattijs > --- > drivers/usb/gadget/udc/Makefile | 2 +- > drivers/usb/gadget/udc/udc-uclass.c | 57 +++++++++++++++++++++++++---- > include/linux/usb/gadget.h | 17 +++++++++ > 3 files changed, 68 insertions(+), 8 deletions(-)