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 9AC05C00140 for ; Wed, 24 Aug 2022 14:05:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239103AbiHXOFW (ORCPT ); Wed, 24 Aug 2022 10:05:22 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44140 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238998AbiHXOFB (ORCPT ); Wed, 24 Aug 2022 10:05:01 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1F1323ECE4 for ; Wed, 24 Aug 2022 07:04:55 -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 dfw.source.kernel.org (Postfix) with ESMTPS id EC531617E6 for ; Wed, 24 Aug 2022 14:04:54 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id CBED6C433D6; Wed, 24 Aug 2022 14:04:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1661349894; bh=jzY+J49GD3rOUmr1IT0CbRZZacULTEfe/pHHgT4Thyw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=sL2TsN36+wFT8OjFHzMZ/R5tnpVNb7+T1J7BZT4rBKODV90gbm1oYBB6MUM2z8s65 1BAp3WZoocV2VrG+43EGP+JoYOKjDOjbpGRSJz8HULOkhQ9drp9JBz/uplcLFQHb8V C0koAI4k5LfIvstJMOl7ITas9Pa4yB9GqAu52h3c= Date: Wed, 24 Aug 2022 16:04:51 +0200 From: Greg Kroah-Hartman To: Vinod Koul Cc: alsa-devel@alsa-project.org, Bard Liao , Pierre-Louis Bossart , Sanyog Kale , linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/5] soundwire: sysfs: move sdw_slave_dev_attr_group into the existing list of groups Message-ID: References: <20220729135041.2285908-1-gregkh@linuxfoundation.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Aug 23, 2022 at 09:30:02PM +0530, Vinod Koul wrote: > On 29-07-22, 15:50, Greg Kroah-Hartman wrote: > > The sysfs logic already creates a list of groups for the device, so add > > the sdw_slave_dev_attr_group group to that list instead of having to do > > a two-step process of adding a group list and then an individual group. > > > > This is a step on the way to moving all of the sysfs attribute handling > > into the default driver core attribute group logic so that the soundwire > > core does not have to do any of it manually. > > Hey Greg, > > DO you have a v2 for this, or if you are too busy I can update the > patchset... v2 is now here: https://lore.kernel.org/r/20220824135951.3604059-1-gregkh@linuxfoundation.org