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 07453C41513 for ; Tue, 8 Aug 2023 20:58:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233482AbjHHU64 (ORCPT ); Tue, 8 Aug 2023 16:58:56 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48632 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234141AbjHHU6o (ORCPT ); Tue, 8 Aug 2023 16:58:44 -0400 Received: from out-120.mta0.migadu.com (out-120.mta0.migadu.com [91.218.175.120]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id BC6CB272C for ; Tue, 8 Aug 2023 13:52:03 -0700 (PDT) Message-ID: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1691527919; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=0xvoeirahWFZ+3tNj8n9ficPcKAPak4lBFOk6V+FiJU=; b=NPb2ggKevHGdvXHMqS//lDI8x3nQGwGQPb6cUdkEMzTsiejj/VSYBxdNqn5UmY8lHHB/S1 +/Ng0nHQnpOnpnsQq0MxS1qC/Oy0q0Zjqge3DvakcnmYHiAHovNty6TNGkAu3NIF7g6E28 zQqWf+vcCwqAB400CTa7tQYQGMaWl0E= Date: Tue, 8 Aug 2023 21:51:55 +0100 MIME-Version: 1.0 Subject: Re: [PATCH net-next v2 2/9] dpll: spec: Add Netlink spec in YAML Content-Language: en-US To: Jakub Kicinski Cc: Jiri Pirko , Arkadiusz Kubalewski , Jonathan Lemon , Paolo Abeni , Milena Olech , Michal Michalik , linux-arm-kernel@lists.infradead.org, poros@redhat.com, mschmidt@redhat.com, netdev@vger.kernel.org, linux-clk@vger.kernel.org, Bart Van Assche , intel-wired-lan@lists.osuosl.org, Simon Horman References: <20230804190454.394062-1-vadim.fedorenko@linux.dev> <20230804190454.394062-3-vadim.fedorenko@linux.dev> <20230808130327.5638d15b@kernel.org> <20230808130617.5ad74486@kernel.org> X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Vadim Fedorenko In-Reply-To: <20230808130617.5ad74486@kernel.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org On 08/08/2023 21:06, Jakub Kicinski wrote: > On Tue, 8 Aug 2023 13:03:27 -0700 Jakub Kicinski wrote: >>> const struct nla_policy dpll_pin_parent_pin_nl_policy[DPLL_A_PIN_STATE >>> + 1] = { >>> [DPLL_A_PIN_STATE] = NLA_POLICY_RANGE(NLA_U8, 1, 3), >>> [DPLL_A_PIN_ID] = { .type = NLA_U32, }, >>> >>> >>> The "/* private: */" comment was added to the generator after Simon's >>> comment. But I'll include this part into the next version. >> >> We only added private for enum masks, I'll send a patch for nlattrs. > > On closer look these have no kdoc, so the priv markings are not > necessary, dropping them sounds right. Ok, I'll add the version which is generated by the script with the lastest patch, I mean with new line and priv markings. Thanks.