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 90918C433F5 for ; Wed, 13 Apr 2022 15:19:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236400AbiDMPVt (ORCPT ); Wed, 13 Apr 2022 11:21:49 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36296 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234666AbiDMPVs (ORCPT ); Wed, 13 Apr 2022 11:21:48 -0400 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id EF3E9BCA3; Wed, 13 Apr 2022 08:19:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=Content-Transfer-Encoding:Content-Type: In-Reply-To:From:References:Cc:To:Subject:MIME-Version:Date:Message-ID:Sender :Reply-To:Content-ID:Content-Description; bh=Eszu3JL25+s+bncKpFs8T3/NcthXr80OQbGJ1Dr4gIk=; b=Wv1mYgiRWhrkQQjGPqj2nHj4o2 Q4obSSSAceYAZAT7CYPGyVIcWuXa9yfsPBJOvuqRSAAxk75PogmT+0U3iSRC3bsOcmDJjMlVA/AFW qB9KK08rJ5nJpH0bb449y9HiXaIiEr+cDP+L7R4Gmuv1iKXv2ewZU7hGrmu1o8brSHdYEvfEs9R// ls3aPjMiMOYKDoh+33zSoc9RZz43VwdET4gXm7Fsl0yoO9D6gukKc6dhav3s4ImspHW7uc3T32/JH NsbfJQdbZ+hGvzhv624ByzcR46RhJIsctpEavyFt5NzYUwPu00aQ3JUVLJlx98+WL2xTyuwd71s+4 9ix0CzJw==; Received: from [2601:1c0:6280:3f0::aa0b] by casper.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1neemB-00EM1k-Cv; Wed, 13 Apr 2022 15:19:23 +0000 Message-ID: <6fe36857-1c94-a421-0701-caf9c38b1c92@infradead.org> Date: Wed, 13 Apr 2022 08:19:19 -0700 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.8.0 Subject: Re: [PATCH] kernel-doc: support DECLARE_PHY_INTERFACE_MASK() Content-Language: en-US To: "Russell King (Oracle)" Cc: linux-kernel@vger.kernel.org, Stephen Rothwell , linux-doc@vger.kernel.org References: <20211030020813.32654-1-rdunlap@infradead.org> From: Randy Dunlap In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-doc@vger.kernel.org On 4/13/22 04:09, Russell King (Oracle) wrote: > On Fri, Oct 29, 2021 at 07:08:13PM -0700, Randy Dunlap wrote: >> Support the DECLARE_PHY_INTERFACE_MASK() macro that is used to declare >> a bitmap by converting the macro to DECLARE_BITMAP(), as has been done >> for the __ETHTOOL_DECLARE_LINK_MODE_MASK() macro. >> >> This fixes a 'make htmldocs' warning: >> >> include/linux/phylink.h:82: warning: Function parameter or member 'DECLARE_PHY_INTERFACE_MASK(supported_interfaces' not described in 'phylink_config' >> >> that was introduced by commit >> 38c310eb46f5 ("net: phylink: add MAC phy_interface_t bitmap") >> >> Signed-off-by: Randy Dunlap >> Reported-by: Stephen Rothwell >> Cc: Russell King (Oracle) > > Thanks Randy, sorry I missed this patch. > > Reviewed-by: Russell King (Oracle) > > What is the intention for merging this patch? Will Jon merge it? > Your tags said To: Jon but you don't seem to have included him in > the email. Hm, I didn't notice that. Guess I'll resend it with your R-b. thanks. -- ~Randy