From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=mess.org header.i=@mess.org header.b="GlrMhEoM" Received: from gofer.mess.org (gofer.mess.org [88.97.38.141]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 33D29E8; Mon, 11 Dec 2023 00:30:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=mess.org; s=2020; t=1702283410; bh=bMk50ArkFZn/A6zyDTd+gORFOrRBh0Vv7u/HdHRDSdQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=GlrMhEoMcOOmT9hZVPZID5jh68eRiPW06fPO3FGYZ1O+ZkJhZ5iYrEyZli7NmY3Jb mP6E5Y/RsBzD8XmsI0DeRez1i3fS5OY4s4i3iL5i3Up4IhuIph5zCkc2KO42esii6L vIeS7eQJwbupke3WsUAoWi+TWJnbLT2PFJXpTGsgmlofKXYcdyDgLVwZv2+PY2kBQP EhFFrETlCgHvrzyXGKVjF/TNO3GPfFI0OhBjaAdUZb7jPqcgSAXUyBNLE6S6OIMLF9 sOuJCffDus+Qy6X/clIMoJnbtuOg5ihgJL7dWMQOPy0Jk4c0FuC3BPGCYpx36iuzpm xfRjdtTrrqIKA== Received: by gofer.mess.org (Postfix, from userid 1000) id 9DCBD10008F; Mon, 11 Dec 2023 08:30:10 +0000 (GMT) Date: Mon, 11 Dec 2023 08:30:10 +0000 From: Sean Young To: Uwe =?iso-8859-1?Q?Kleine-K=F6nig?= Cc: linux-media@vger.kernel.org, linux-pwm@vger.kernel.org, Ivaylo Dimitrov , Thierry Reding , Jonathan Corbet , Jani Nikula , Joonas Lahtinen , Rodrigo Vivi , Tvrtko Ursulin , David Airlie , Daniel Vetter , Javier Martinez Canillas , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , Jean Delvare , Guenter Roeck , Support Opensource , Dmitry Torokhov , Pavel Machek , Lee Jones , Mauro Carvalho Chehab , Hans de Goede , Ilpo =?iso-8859-1?Q?J=E4rvinen?= , Mark Gross , Liam Girdwood , Mark Brown , Daniel Thompson , Jingoo Han , Helge Deller , Jani Nikula , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org, linux-hwmon@vger.kernel.org, linux-input@vger.kernel.org, linux-leds@vger.kernel.org, platform-driver-x86@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-fbdev@vger.kernel.org Subject: Re: [PATCH v6 1/4] pwm: rename pwm_apply_state() to pwm_apply_might_sleep() Message-ID: References: <37090c1d8d8f42f1e12fa84942027d995189a99e.1701248996.git.sean@mess.org> <20231209135742.3ieusuq3h3xlvjfn@pengutronix.de> Precedence: bulk X-Mailing-List: linux-input@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20231209135742.3ieusuq3h3xlvjfn@pengutronix.de> On Sat, Dec 09, 2023 at 02:57:42PM +0100, Uwe Kleine-König wrote: > On Wed, Nov 29, 2023 at 09:13:34AM +0000, Sean Young wrote: > > In order to introduce a pwm api which can be used from atomic context, > > we will need two functions for applying pwm changes: > > > > int pwm_apply_might_sleep(struct pwm *, struct pwm_state *); > > int pwm_apply_atomic(struct pwm *, struct pwm_state *); > > > > This commit just deals with renaming pwm_apply_state(), a following > > commit will introduce the pwm_apply_atomic() function. > > > > Acked-by: Hans de Goede > > Acked-by: Jani Nikula > > Acked-by: Lee Jones > > Signed-off-by: Sean Young > > Not a in-detail-review, but I just noticed again, that we have > > K: pwm_(config|apply_state|ops) > > in MAINTAINERS. That one needs adaption, too. Fixed in v7. Thanks, Sean