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 2972BC7EE22 for ; Sun, 14 May 2023 21:56:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230201AbjENV4a (ORCPT ); Sun, 14 May 2023 17:56:30 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55442 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229534AbjENV43 (ORCPT ); Sun, 14 May 2023 17:56:29 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 296E3E73; Sun, 14 May 2023 14:56:29 -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 982AC60EA1; Sun, 14 May 2023 21:56:28 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 79531C433D2; Sun, 14 May 2023 21:56:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1684101388; bh=R1e8V9jPCIYXD/S9SJh67OIR8g9mBP1aWfHDXH4v3PE=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=E6pO7/M9tDV39rvpeU/vlP1n0n/qh17rgfX4csYAEjvuKGW7AFITCJWXGdJA+/bnB P8+ha92Xc4fRdhMyPu+b1IFpxCedZa2M0ojB7V3QKZ+tzKYQW7FE2d+WzghhEmYk6J tVUV8qCU5jN4JTaZf/BxevDnPPcSBOA++bXg8Pf8DPr8nPujzA1GdJI8sZSVrAkVde fcXVI8xxeEUv4Vjf/n5pajRlzdL+loSOvgVCkk+Gc2UOJU/yn1AbYbAD53hn3taQSU XzF1fkb2wOLcQ7hMJ61Sq4ZK745Ddd4kHEdu8DRIZCjdjw7o/x0+HdXMQaNlHgEO2l 0ErrgYF6LY1/w== Message-ID: <30ebd0b4-c079-50ad-9320-395b38cc132d@kernel.org> Date: Mon, 15 May 2023 06:56:24 +0900 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.10.0 Subject: Re: [PATCH] ata: libata: Make ata_platform_remove_one return void To: =?UTF-8?Q?Uwe_Kleine-K=c3=b6nig?= , Serge Semin , Shawn Guo , Sascha Hauer , Matthias Brugger , Hans de Goede , Jens Axboe , Patrice Chotard , Chen-Yu Tsai , Jernej Skrabec , Samuel Holland , Thierry Reding , Jonathan Hunter Cc: Pengutronix Kernel Team , Fabio Estevam , NXP Linux Team , AngeloGioacchino Del Regno , Sergey Shtylyov , "open list:LIBATA SUBSYSTEM" , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org, linux-sunxi@lists.linux.dev, linux-tegra@vger.kernel.org References: <20230512204646.137746-1-u.kleine-koenig@pengutronix.de> Content-Language: en-US From: Damien Le Moal Organization: Western Digital Research In-Reply-To: <20230512204646.137746-1-u.kleine-koenig@pengutronix.de> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-ide@vger.kernel.org On 5/13/23 05:46, Uwe Kleine-König wrote: > The function returned zero unconditionally, so the function returning an > int is something between useless and irritating. With the goal to make > platform drivers' remove function return void, it's helpful to convert > the function accordingly. This converts several drivers to the new > .remove_new callback that was introduced to smoothen the platform driver > conversion. > > Signed-off-by: Uwe Kleine-König Applied to for-6.5. Thanks !