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 C3D27C433F5 for ; Sat, 30 Apr 2022 02:08:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1382069AbiD3CL1 (ORCPT ); Fri, 29 Apr 2022 22:11:27 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56738 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S240229AbiD3CLR (ORCPT ); Fri, 29 Apr 2022 22:11:17 -0400 Received: from sin.source.kernel.org (sin.source.kernel.org [145.40.73.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0A168C1C8E; Fri, 29 Apr 2022 19:07:57 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by sin.source.kernel.org (Postfix) with ESMTPS id 05391CE3564; Sat, 30 Apr 2022 02:07:56 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 909FAC385A4; Sat, 30 Apr 2022 02:07:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1651284474; bh=nHShToVT/QHjSqamH2C8iOcXNP+HMyX8SCWsqa38xn4=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=pjTg9KZTk4KvBeQXLWI8kX33ncNG9tMfY0b2L54xlCm4kBQeNyYysXJKQdpOSbRWj 5a0zi4Li6QXPxtt3N12qT5DHWK3kBRwed2LTH1ZYSymnknxmIu1JN52LpMrcSu3pdg b8ksjbUDlJ3DLBKHIMvh6AlUkgf24v2E0C33oZPzusf1wfri+nQ++T1j/9mCRPwbxg zRlejWCHFuvoweskhQzIQkB1umTi8FKRpztN/ttvVhLXfbJRO3jBCp5Il5ncyLavvX Y/oKfeNR8LdN7jKhntiVVspU1mdPkfjfuI0Gojf+e+Udd1sB3erg/spodS/BH5PZLP 8/vIP+2A9CLkw== Date: Fri, 29 Apr 2022 19:07:52 -0700 From: Jakub Kicinski To: Colin Foster Cc: linux-kernel@vger.kernel.org, netdev@vger.kernel.org, Paolo Abeni , Eric Dumazet , "David S. Miller" , Florian Fainelli , Vivien Didelot , Andrew Lunn , UNGLinuxDriver@microchip.com, Alexandre Belloni , Claudiu Manoil , Vladimir Oltean Subject: Re: [PATCH v1 net 1/2] net: ethernet: ocelot: rename vcap_props to clearly be an ocelot member Message-ID: <20220429190752.36a8f4dd@kernel.org> In-Reply-To: <20220429233049.3726791-2-colin.foster@in-advantage.com> References: <20220429233049.3726791-1-colin.foster@in-advantage.com> <20220429233049.3726791-2-colin.foster@in-advantage.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 29 Apr 2022 16:30:48 -0700 Colin Foster wrote: > The vcap_props structure is part of the ocelot driver. It is in the process > of being exported to a wider scope, so renaming it to match other structure > definitions in the include/soc/mscc/ocelot.h makes sense. > > I'm splitting the rename operation into this separate commit, since it > should make the actual bug fix (next commit) easier to review. Sure, but is it really necessary to do it now, or can we do it later in net-next? There's only one struct vcap_props in the tree AFAICT.