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 26DB9C433EF for ; Tue, 14 Dec 2021 23:05:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238096AbhLNXFA (ORCPT ); Tue, 14 Dec 2021 18:05:00 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39252 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238084AbhLNXE7 (ORCPT ); Tue, 14 Dec 2021 18:04:59 -0500 Received: from mail-pj1-x102e.google.com (mail-pj1-x102e.google.com [IPv6:2607:f8b0:4864:20::102e]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 83351C06173F for ; Tue, 14 Dec 2021 15:04:59 -0800 (PST) Received: by mail-pj1-x102e.google.com with SMTP id nh10-20020a17090b364a00b001a69adad5ebso17410950pjb.2 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=V9oKpepU7L0+087doUrffw0YrCcLE+V8Sn7mUn3R0aIUdL4hg13F4a9nxfLjYT0xAg egPoW5NlihKVa+KMN2nzLbpeYQgTLulLlL2PKtQXLsnwi1ObU2IPAnFfE08gUK/vIIOS M+9+TBMXyG+MQSd3KJ//IEGvGDuiLbVTh5O5aV9rCxvahixYTWRyYWhS/DT9NgDsIumz SaTRX2YCr0bxwgCQfV3Wmh3UcHCzEKEb6o3NRi/NWFMbqWLLL3Onr8DHm3icjsJbkMMb 6ABnoDZ2F/XWtVC3/W1SEb788cnk7RoRu8RyOhKC0JmnrS82PtHX5BcsJda68dnY2fBh C9RQ== X-Gm-Message-State: AOAM533ZnU3BgC5/YqNOIfFrXEKLYlDKNCFLwgbPRZcaaHAgOLcwnSl3 bRzbYc90Xl+EuSck9yOFSfe/kw== 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-usb@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