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 D85BDC4332F for ; Tue, 14 Dec 2021 23:05:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238113AbhLNXFA (ORCPT ); Tue, 14 Dec 2021 18:05:00 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39248 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238082AbhLNXE7 (ORCPT ); Tue, 14 Dec 2021 18:04:59 -0500 Received: from mail-pj1-x1032.google.com (mail-pj1-x1032.google.com [IPv6:2607:f8b0:4864:20::1032]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7A545C061574 for ; Tue, 14 Dec 2021 15:04:59 -0800 (PST) Received: by mail-pj1-x1032.google.com with SMTP id y14-20020a17090a2b4e00b001a5824f4918so18586662pjc.4 for ; Tue, 14 Dec 2021 15:04:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chromium.org; s=google; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to; bh=M2BFbMJaVwMNM4RS4xLE2tjwuVQHsGBUmE2Hk9fOAug=; b=TiFP6w2bj9LlQ33+ScgY0eGfLoigi+0Ao+OjORy5YkzW15X59Q6Lytt/c0+S2wCjss mdMbfgIdiGrM0h64qsMvdbKzwz3AD1mGZssJeT7syS+pewMwVDMgchViqwTUe7c/7o9R afgTjXMDqPj1yd/HjGjkwzpmOrAH24ZkaHKzA= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=M2BFbMJaVwMNM4RS4xLE2tjwuVQHsGBUmE2Hk9fOAug=; b=MUPSuMGWACoKY5mRc72EsWHRr3Yv5Pdyxf2Ea18qwaZbzcWtEFWqfBxbr+VHzLN/SM ewdSXus3cDTzTfYXYv7XsDb5RMvPmV1ZUu3GU5WGeyDD9DvWkAyaZgPYuGG1bgJVALKL Vy00W3TVQ4zAfq5JX8PEzyPbeGORBcol75OvkcHMvVBQlnpqWvVdm4xMVsIiu35bAyha xyD1S/Ei6Z5LIzi1pfN7vSUuCi5q8Ulcjz8RIPczGDr7xQ/EN1Kf5Wrl0XcI0WI/smSf ScItNKvbmkthy443Mq3VjxMhbzL+XUS3LyVTlkAUonyAIQYQ0Dh/ikaIRsg+BoJbCLqW yDpA== X-Gm-Message-State: AOAM532NLKpljj1dk+WUCIQ3XxaD2iNWA9fQBrdJFAo7+eKwVfRxxZm2 utTFVcxTTm7+POi3HM0BJKq4sQ== X-Google-Smtp-Source: ABdhPJwNDRkNv0tjAX5S3YBqoEQjC3y4dtBnPaCbfBBWzUSQcnpEx+d0aV1f9ocu/hymnGerkVgLaQ== X-Received: by 2002:a17:902:b197:b0:148:a2e7:fb4d with SMTP id s23-20020a170902b19700b00148a2e7fb4dmr1630928plr.142.1639523099026; Tue, 14 Dec 2021 15:04:59 -0800 (PST) Received: from google.com ([2620:15c:202:201:e9a1:b79a:d9a5:5e56]) by smtp.gmail.com with ESMTPSA id lp12sm48343pjb.24.2021.12.14.15.04.58 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 14 Dec 2021 15:04:58 -0800 (PST) Date: Tue, 14 Dec 2021 15:04:57 -0800 From: Prashant Malani To: Heikki Krogerus Cc: "Rafael J. Wysocki" , Greg Kroah-Hartman , Andy Shevchenko , Sakari Ailus , linux-acpi@vger.kernel.org, linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 0/5] acpi: Store _PLD information and convert users Message-ID: References: <20211213103243.33657-1-heikki.krogerus@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20211213103243.33657-1-heikki.krogerus@linux.intel.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Heikki, On Mon, Dec 13, 2021 at 01:32:38PM +0300, Heikki Krogerus wrote: > Hi, > > I'm now using the helpers device_match_acpi_dev() and > device_match_fwnode() like Andy suggested. No other changes. > > > The original cover letter: > > This removes the need for the drivers to always separately evaluate > the _PLD. With the USB Type-C connector and USB port mapping this > allows us to start using the component framework and remove the custom > APIs. > > So far the only users of the _PLD information have been the USB > drivers, but it seems it will be used also at least in some camera > drivers later. These nevertheless touch mostly USB drivers. > > Rafael, is it still OK if Greg takes these? > > Prashant, can you test these? I'd sent an email earlier, but not sure why it's not showing up in lore.kernel.org. So I'll send it again. FWIW, for the series: Tested-by: Prashant Malani Thanks, -Prashant