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 EB48EC0015E for ; Mon, 3 Jul 2023 07:40:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229701AbjGCHkE (ORCPT ); Mon, 3 Jul 2023 03:40:04 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37726 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229483AbjGCHkD (ORCPT ); Mon, 3 Jul 2023 03:40:03 -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 7F079C1; Mon, 3 Jul 2023 00:40:02 -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) server-digest SHA256) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 5DFA460D2B; Mon, 3 Jul 2023 07:40:01 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3BBA7C433C7; Mon, 3 Jul 2023 07:40:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1688370000; bh=2Fuonf3inGH6Anz8QQf5AfqCEcy/ALYXqeeLCq68Olc=; h=Date:From:To:Subject:In-Reply-To:References:Cc:From; b=Px9Kb2FMUtGc2uRE1HnA39rxVKAwOwfN31jg5IVAujwpq+pRCxOHXIdrhlHuKMioh WjK0nGaGY2hhkmPoCA7jZ2klY+Qe5zjJ2baSrWvwLISdZZxobINgyi91P6nf8WzkqR vcI3bWYIrhJY+4M3ROkt16glLaER6CoarhPoxSMEze/FzqEqhSpfGRFgbyiGG7BMPe LpTzamyELTy6mNeaCG9ljiRg9kVoxBRSlCdBEu/yXZz6wczs4ScN5V4bMsLgXwzkR9 PCktpxjDZZT6pKwxkUfmYkzKll4V8kQB2/Y/nYsRwco0vWPo7W+3dnXCSWIXht5mh1 1gEEt8IGCChjw== Message-ID: <0624919df393575c25c454b14ca790e5.mripard@kernel.org> Date: Mon, 03 Jul 2023 07:39:57 +0000 From: "Maxime Ripard" To: "Frank Oltmanns" Subject: Re: [PATCH v3 7/8] clk: sunxi-ng: div: Support finding closest rate In-Reply-To: <20230702-pll-mipi_set_rate_parent-v3-7-46dcb8aa9cbc@oltmanns.dev> References: <20230702-pll-mipi_set_rate_parent-v3-7-46dcb8aa9cbc@oltmanns.dev> Cc: linux-arm-kernel@lists.infradead.org, linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org, linux-sunxi@lists.linux.dev, "Andre Przywara" , "Chen-Yu Tsai" , "Jernej Skrabec" , "Maxime Ripard" , "Michael Turquette" , "Roman Beranek" , "Samuel Holland" , "Stephen Boyd" Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, 2 Jul 2023 19:55:26 +0200, Frank Oltmanns wrote: > Add initalization macros for divisor clocks with mux > (SUNXI_CCU_M_WITH_MUX) to support finding the closest rate. This clock > type requires the appropriate flags to be set in the .common structure > (for the mux part of the clock) and the .div part. > > > [ ... ] Acked-by: Maxime Ripard Thanks! Maxime