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 29A98EB64DA for ; Wed, 12 Jul 2023 15:57:31 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231452AbjGLP5a (ORCPT ); Wed, 12 Jul 2023 11:57:30 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37282 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232478AbjGLP53 (ORCPT ); Wed, 12 Jul 2023 11:57:29 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 97C20199D; Wed, 12 Jul 2023 08:57:28 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 351E461889; Wed, 12 Jul 2023 15:57:28 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E6296C433C7; Wed, 12 Jul 2023 15:57:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1689177447; bh=irtHxWZQ/pjuQ4xowSpTxILW4ozSSaj/79le9KVqiDQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ocKBLgmGFIxdj0maYkMq0oLKmzB9VOkIKe5HS7usp38sX1F4XLB+Ki3/fCIO8RxoV +hyM1maJ/Jpka7g7U+ERePOtdmgVy2EGsWTlbPpIq6M/yLlDWelJ9/H82kpM6jLDKJ FAUrhui/9F0R1YjeuU5/7T2zeWo+J85hsvkeZP2YRJsnaqJRZ56tQJ6jhcoFLQpUjD M/unq9nrTrRrxIaHHKL3FUW9ZImKBakPKUH5bdimrKxdVXKPYwOY5Pe3WtAw6CBbu0 d8F9Ox7DPhsfuRru/PQV9fYHdYVxj+yPN6SEYGTUSBE36CeUxTbdvvo7STzJUHxEHM VMELzHF6RS1Gg== Date: Wed, 12 Jul 2023 17:57:23 +0200 From: Andi Shyti To: Yangtao Li Cc: Wolfram Sang , linux-renesas-soc@vger.kernel.org, linux-i2c@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 08/11] i2c: sh_mobile: Use devm_platform_get_and_ioremap_resource() Message-ID: <20230712155723.7qlu32bls47bhtir@intel.intel> References: <20230710063351.17490-1-frank.li@vivo.com> <20230710063351.17490-8-frank.li@vivo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230710063351.17490-8-frank.li@vivo.com> Precedence: bulk List-ID: X-Mailing-List: linux-i2c@vger.kernel.org Hi Yangtao, On Mon, Jul 10, 2023 at 02:33:47PM +0800, Yangtao Li wrote: > Convert platform_get_resource(), devm_ioremap_resource() to a single > call to devm_platform_get_and_ioremap_resource(), as this is exactly > what this function does. > > Signed-off-by: Yangtao Li Reviewed-by: Andi Shyti Andi