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 X-Spam-Level: X-Spam-Status: No, score=-1.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9F83AC10F0C for ; Thu, 4 Apr 2019 08:16:28 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 774532075E for ; Thu, 4 Apr 2019 08:16:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727348AbfDDIQ0 (ORCPT ); Thu, 4 Apr 2019 04:16:26 -0400 Received: from metis.ext.pengutronix.de ([85.220.165.71]:57933 "EHLO metis.ext.pengutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725904AbfDDIQZ (ORCPT ); Thu, 4 Apr 2019 04:16:25 -0400 Received: from litschi.hi.pengutronix.de ([2001:67c:670:100:feaa:14ff:fe6a:8db5]) by metis.ext.pengutronix.de with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hBxXs-0003TK-78; Thu, 04 Apr 2019 10:16:24 +0200 Date: Thu, 4 Apr 2019 10:16:21 +0200 From: Michael Tretter To: linux-clk@vger.kernel.org, linux-arm-kernel@lists.infradead.org Cc: kernel@pengutronix.de, Michael Turquette , Stephen Boyd , Michal Simek , Jolly Shah Subject: Re: [PATCH v2 0/4] clk: zynqmp: fix CLK_FRAC and various cleanups Message-ID: <20190404101621.7b88337c@litschi.hi.pengutronix.de> In-Reply-To: <20190319100147.4178-1-m.tretter@pengutronix.de> References: <20190319100147.4178-1-m.tretter@pengutronix.de> Organization: Pengutronix X-Mailer: Claws Mail 3.14.1 (GTK+ 2.24.31; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-SA-Exim-Connect-IP: 2001:67c:670:100:feaa:14ff:fe6a:8db5 X-SA-Exim-Mail-From: m.tretter@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-clk@vger.kernel.org Sender: linux-clk-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org On Tue, 19 Mar 2019 11:01:43 +0100, Michael Tretter wrote: > This is v2 of the patchset to cleanup the ZynqMP clock driver. Gentle ping. Michael > > I introduced the new is_frac field in zynqmp_clk_divider. The driver uses this > field to flag fractional dividers instead of misusing the clk_hw::core::flags > field. > > Furthermore, the driver uses structs for the query responses from the firmware > instead of passing arrays with implicit size. > > Michael > > v1 -> v2: > - remove export of zynqmp_clk_register_divider > - move CLK_FLAG to property in zynqmp_clk_divider > - merge and rewrite patches 4 and 5 to use structs for responses > > Michael Tretter (4): > clk: zynqmp: fix kerneldoc of __zynqmp_clock_get_parents > clk: zynqmp: do not export zynqmp_clk_register_* functions > clk: zynqmp: fix check for fractional clock > clk: zynqmp: use structs for clk query responses > > drivers/clk/zynqmp/clk-mux-zynqmp.c | 1 - > drivers/clk/zynqmp/clk-zynqmp.h | 6 -- > drivers/clk/zynqmp/clkc.c | 148 ++++++++++++++++------------ > drivers/clk/zynqmp/divider.c | 10 +- > 4 files changed, 92 insertions(+), 73 deletions(-) >