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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8791CC7EE31 for ; Sun, 28 May 2023 11:37:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229461AbjE1Lhq (ORCPT ); Sun, 28 May 2023 07:37:46 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39364 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229451AbjE1Lhp (ORCPT ); Sun, 28 May 2023 07:37:45 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 03383BB; Sun, 28 May 2023 04:37:44 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 8F17F6146E; Sun, 28 May 2023 11:37:43 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5CFAFC433D2; Sun, 28 May 2023 11:37:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1685273862; bh=BIru6hlSNmRQGDEmy/Ww2n/Ov46kOSzrO8WVSVMyVwk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=EKY74s2BqKVHsqdLZEJDtyzRLP27oRRAE5LsCzf35joLA4Bv8NFE6KwFSXzjEcDAc /QHhhuwz8E4i4TDH5lCtMbNH7ouvxh60fkkTD/Otlm/A+C79fe6sGqqSkaxM+fI2/7 xnKqQUPfkVoUXTG/Y91VsilUBchm/3mfEM5jOOP0= Date: Sun, 28 May 2023 12:37:17 +0100 From: Greg Kroah-Hartman To: Uwe =?iso-8859-1?Q?Kleine-K=F6nig?= Cc: Peter Chen , Pawel Laszczak , Shawn Guo , Sascha Hauer , Thierry Reding , Jonathan Hunter , Chunfeng Yun , Christophe JAILLET , Prashanth K , Minas Harutyunyan , Thinh Nguyen , Krzysztof Kozlowski , Neil Armstrong , Kevin Hilman , Andy Gross , Bjorn Andersson , Patrice Chotard , Michal Simek , Linus Walleij , Andy Shevchenko , Joel Stanley , Benjamin Herrenschmidt , Lei YU , Neal Liu , Henry Tian , Cristian Birsan , Nicolas Ferre , Alexandre Belloni , Claudiu Beznea , Kevin Cernekee , Justin Chen , Al Cooper , Li Yang , Gaosheng Cui , Alan Stern , Aaro Koskinen , Paolo Abeni , "Steven Rostedt (Google)" , Kalle Valo , Kang Chen , Shaomin Deng , Arnd Bergmann , Laurent Pinchart , Richard Leitner , Colin Ian King , Wolfram Sang , Daniel Mack , Haojian Zhuang , Robert Jarzmik , Biju Das , Geert Uytterhoeven , Zheng Wang , Phil Edworthy , Herve Codina , Rob Herring , Wayne Chang , Haotien Hsu , Jim Lin , Tang Bin , Sing-Han Chen , Piyush Mehta , Avi Fishman , Tomer Maimon , Tali Perry , Darren Stevens , Alexander Stein , Olav Kongas , Artur Bujdoso , Vladimir Zapolskiy , "Gustavo A. R. Silva" , Mathias Nyman , Matthias Brugger , Rui Miguel Silva , Souradeep Chowdhury , Francesco Dolcini , Emanuele Ghidoli , Jean Delvare , Dongliang Mu , Hans de Goede , Heikki Krogerus , Guenter Roeck , Dan Carpenter , Samuel =?utf-8?B?xIxhdm9q?= , Valentina Manea , Shuah Khan , linux-usb@vger.kernel.org, kernel@pengutronix.de, Roger Quadros , Aswath Govindraju , Fabio Estevam , NXP Linux Team , linux-arm-kernel@lists.infradead.org, linux-tegra@vger.kernel.org, Alim Akhtar , linux-samsung-soc@vger.kernel.org, Jerome Brunet , Martin Blumenstingl , linux-amlogic@lists.infradead.org, linux-omap@vger.kernel.org, Konrad Dybcio , linux-arm-msm@vger.kernel.org, Andrew Jeffery , linux-aspeed@lists.ozlabs.org, Broadcom internal kernel review list , linuxppc-dev@lists.ozlabs.org, linux-renesas-soc@vger.kernel.org, Patrick Venture , Nancy Yuen , Benjamin Fair , openbmc@lists.ozlabs.org, AngeloGioacchino Del Regno , linux-mediatek@lists.infradead.org, Hongren Zheng Subject: Re: [PATCH 00/97] usb: Convert to platform remove callback returning void Message-ID: <2023052848-patronage-zen-de4b@gregkh> References: <20230517230239.187727-1-u.kleine-koenig@pengutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20230517230239.187727-1-u.kleine-koenig@pengutronix.de> Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org On Thu, May 18, 2023 at 01:01:02AM +0200, Uwe Kleine-König wrote: > Hello, > > this series convers the drivers below drivers/usb to the .remove_new() > callback of struct platform_driver(). The motivation is to make the > remove callback less prone for errors and wrong assumptions. See commit > 5c5a7680e67b ("platform: Provide a remove callback that returns no > value") for a more detailed rationale. > > All drivers converted here already returned zero unconditionally in their > .remove() callback, so converting them to .remove_new() is trivial. All but 2 patches applied, as one was for a driver that wasn't in the tree anymore, and the dwc2 patch didn't apply at all. thanks, greg k-h