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 2BCAEEB64DB for ; Tue, 20 Jun 2023 19:28:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230131AbjFTT2F (ORCPT ); Tue, 20 Jun 2023 15:28:05 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56884 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229478AbjFTT2C (ORCPT ); Tue, 20 Jun 2023 15:28:02 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 39DDA1704; Tue, 20 Jun 2023 12:28:01 -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 CB73260F02; Tue, 20 Jun 2023 19:28:00 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2ACE7C433C8; Tue, 20 Jun 2023 19:28:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1687289280; bh=ExNcPNEX95ZDzx3tWopUJakPOtmqst+7q9RzIbG8YCQ=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=YiP/XE4EXT4Zfq9rxaSYCPGHcctO6omqYJivbZAPl5FtQGVAGpKetojMCfNxM64Js R1rNzqPuEf54TNIWTW48YaDCCt53sLpPa8p4ztMCP96gUknE2lO/VImn4Wuxetfxws L+my/lHOyC3/8nE5L5xkDqN07rD7wbJHsC24hdWLlJZ3l0T/CnUC3akSrPpKn5dV09 7+DJnx4sH47E/f3NxrAfTDEvjbvNKUZx8wPR/fsnOxa8ImhzIYWni511ARiez6dJTo Vi8XS1GSXB+HABdwlZy2CK0J7rlmoWQKxlQoSa5xu7JxznwdUmRNpzaUrT2CCOcSU3 8TlkxlujToFrg== Message-ID: <22242a1887670e5c2135042442ebf168.sboyd@kernel.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20230615101931.581060-1-claudiu.beznea@microchip.com> References: <20230615101931.581060-1-claudiu.beznea@microchip.com> Subject: Re: [PATCH] clk: fix typo in clk_hw_register_fixed_rate_parent_data() macro From: Stephen Boyd Cc: linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org, Claudiu Beznea To: Claudiu Beznea , mturquette@baylibre.com Date: Tue, 20 Jun 2023 12:27:57 -0700 User-Agent: alot/0.10 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Quoting Claudiu Beznea (2023-06-15 03:19:31) > clk_hw_register_fixed_rate_parent_data() 3rd parameter is parent_data > not parent_hw. Inner function (__clk_hw_register_fixed_rate()) is called > with parent_data parameter as valid. To have this parameter taken into > account update the name of the 3rd parameter of > clk_hw_register_fixed_rate_parent_data() macro to parent_data. >=20 > Signed-off-by: Claudiu Beznea > --- Applied to clk-next