From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id CE79B1DFD96; Fri, 11 Jul 2025 07:04:23 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1752217463; cv=none; b=k6WucMa7hr7QoFg+m7IydeCEQhzBSfMUa7/vyn/i2J7xGc9YslCzEWNkvo7ZEsnmGsSNklyF+BcrzfRh5kYJO34umK+QwVXlg9o4X2EpNe8HD8odl3QQKmP+33BV6OEYiL5kmH2Uu6Wi3JJqqeSZmgk9FDHva0mB8RjVSXxehTY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1752217463; c=relaxed/simple; bh=uK5/A21fH/ybXkIrVUNquGOGWtk5qo5hMSx0pRcrghQ=; h=Message-ID:Date:From:To:Subject:In-Reply-To:References:Cc; b=Id76hN7QiHljXSlMSvznYngPmJ1fYeDysuVWiCw6QUpu7FrSqnxH3Nga4Nll6wASZfzLTUpqyi2hWrsBEFdjxNDWz/TeKOyK8Wb2q0XvqMF/vikjYswbLEJkZh2WmFQUBBz0SGkVHFrrkyM+QFm3hgFCJkH7+x9UcfqNfPhr/Tw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=ozfb4Ymi; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="ozfb4Ymi" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2A7B7C4CEEF; Fri, 11 Jul 2025 07:04:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1752217463; bh=uK5/A21fH/ybXkIrVUNquGOGWtk5qo5hMSx0pRcrghQ=; h=Date:From:To:Subject:In-Reply-To:References:Cc:From; b=ozfb4Ymiyjz9klNEQNJ7+XMATYrXDol/mZYRFbfu5CreWryhHBADzdHTjmGWT6pCI 2LI8Hg3YRs0dd48sDHV7Eivso+OTPLMGaTu1Xav9SaYjTT9eRvxnnxhOL1kS6k7eTQ bXrKPl8f85Qk1zPAVj+UGD9+AU58t3/QWCmFB06enVeBKPHHaplP5gj24nlTkj0deB Iopp5WPNP9nBuHVUExF+gSTKayUaynoxmromiXtiwoLlEmTz0YeOmQC4EfcF9HVpeZ ex81Qyb0Ajht4BpSAF2dNL7n5bqyR5EY+VeBDQjOBjZSiSFHbzueV2hpjJqv5B0JRX AsYgFP/435ZLg== Message-ID: <1513c2dd4793403c32ccbbef4b5774e3@kernel.org> Date: Fri, 11 Jul 2025 07:04:21 +0000 From: "Maxime Ripard" To: "Brian Masney" Subject: Re: [PATCH 8/9] drm/sun4i/sun4i_hdmi_ddc_clk: convert from round_rate() to determine_rate() In-Reply-To: <20250710-drm-clk-round-rate-v1-8-601b9ea384c3@redhat.com> References: <20250710-drm-clk-round-rate-v1-8-601b9ea384c3@redhat.com> Cc: dri-devel@lists.freedesktop.org, freedreno@lists.freedesktop.org, imx@lists.linux.dev, linux-arm-kernel@lists.infradead.org, linux-arm-msm@vger.kernel.org, linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org, linux-stm32@st-md-mailman.stormreply.com, linux-sunxi@lists.linux.dev, "Abhinav Kumar" , "Alexandre Torgue" , "Chen-Yu Tsai" , "David Airlie" , "Dmitry Baryshkov" , "Fabio Estevam" , "Jernej Skrabec" , "Jessica Zhang" , "Linus Walleij" , "Maarten Lankhorst" , "Marijn Suijten" , "Maxime Coquelin" , "Maxime Ripard" , "Pengutronix Kernel Team" , "Philipp Zabel" , "Philippe Cornu" , "Raphael Gallais-Pou" , "Rob Clark" , "Samuel Holland" , "Sascha Hauer" , "Sean Paul" , "Shawn Guo" , "Simona Vetter" , "Stephen Boyd" , "Thomas Zimmermann" , "Yannick Fertre" Content-Transfer-Encoding: 7bit Precedence: bulk X-Mailing-List: imx@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: On Thu, 10 Jul 2025 13:43:09 -0400, Brian Masney wrote: > The round_rate() clk ops is deprecated, so migrate this driver from > round_rate() to determine_rate() using the Coccinelle semantic patch > on the cover letter of this series. > > Signed-off-by: Brian Masney > > [ ... ] Acked-by: Maxime Ripard Thanks! Maxime