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 gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id E2D34C02194 for ; Thu, 6 Feb 2025 14:16:23 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 646F310E86B; Thu, 6 Feb 2025 14:16:23 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="oUgdH98X"; dkim-atps=neutral Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by gabe.freedesktop.org (Postfix) with ESMTPS id 5818E10E86B for ; Thu, 6 Feb 2025 14:16:22 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by dfw.source.kernel.org (Postfix) with ESMTP id E40545C4A80; Thu, 6 Feb 2025 14:15:41 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id D3A9DC4CEDD; Thu, 6 Feb 2025 14:16:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1738851381; bh=TVrqcXFgqBq6YFt7saP+I5ihtXmckW23rwRocf2v0ks=; h=Date:From:To:Subject:In-Reply-To:References:Cc:From; b=oUgdH98XCy7hXa1ByUogw4wZqfQiUMbkICr6OB2xFmDDElLbT5m+D0XzwWV8BzN4F aU9wIobTYhSktwzOBbHotD7pjFpro/6rKfp44cW1VTaAe/r3Tu9Dm3YATGZaMn2wgX XVkzNpxRcchr65QYCKk9NSQ7aYVv5llZoLqveCPFe/hwdm/NdwmCWys1PY11NtWe5i FNVVTG6tm05bKn3f29wvDj4nqSWIk0efSNkn3CEI6D9AALmnMa4ilpyTl2kDXAIIs0 Y2z6DwgguFYCR90SoCdiXek/5rFwYlX6uaKOVNi1aLNRYHKaG1yyJtQlIFNK0BPpYM nRSntspicf8+g== Message-ID: Date: Thu, 06 Feb 2025 14:16:18 +0000 From: "Maxime Ripard" To: "Anusha Srivatsa" Subject: Re: [PATCH 07/12] drm/sti: move to devm_platform_ioremap_resource() usage In-Reply-To: <20250205-mem-cocci-newapi-v1-7-aebf2b0e2300@redhat.com> References: <20250205-mem-cocci-newapi-v1-7-aebf2b0e2300@redhat.com> Cc: dri-devel@lists.freedesktop.org, imx@lists.linux.dev, linux-arm-kernel@lists.infradead.org, linux-aspeed@lists.ozlabs.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-mediatek@lists.infradead.org, linux-rockchip@lists.infradead.org, linux-stm32@st-md-mailman.stormreply.com, linux-tegra@vger.kernel.org, "Alain Volmat" , "Alexandre Torgue" , "Alexey Brodkin" , "Alison Wang" , "Andrew Jeffery" , "Andy Yan" , "AngeloGioacchino Del Regno" , "Baolin Wang" , "Chun-Kuang Hu" , "Chunyan Zhang" , "Dave Stevenson" , "David Airlie" , "Fabio Estevam" , =?utf-8?b?SGVpa28gU3TDvGJuZXI=?= , "Joel Stanley" , "John Stultz" , "Jonathan Corbet" , "Jonathan Hunter" , "Maarten Lankhorst" , "Marek Vasut" , "Matthias Brugger" , "Maxime Coquelin" , "Maxime Ripard" , =?utf-8?b?TWHDrXJhIENhbmFs?= , "Mikko Perttunen" , "Orson Zhai" , "Pengutronix Kernel Team" , "Philipp Zabel" , "Philippe Cornu" , "Raphael Gallais-Pou" , "Raphael Gallais-Pou" , "Raspberry Pi Kernel Maintenance" , "Sandy Huang" , "Sascha Hauer" , "Shawn Guo" , "Simona Vetter" , "Stefan Agner" , "Sumit Semwal" , "Thierry Reding" , "Thomas Zimmermann" , "Tian Tao" , "Xinliang Liu" , "Xinwei Kong" , "Yannick Fertre" , "Yongqin Liu" Content-Transfer-Encoding: 7bit X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Wed, 5 Feb 2025 15:08:03 -0500, Anusha Srivatsa wrote: > Replace platform_get_resource/_byname + devm_ioremap > with just devm_platform_ioremap_resource() > > Used Coccinelle to do this change. SmPl patch: > > > [ ... ] Reviewed-by: Maxime Ripard Thanks! Maxime