All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: "Saravana Kannan" <saravanak@google.com>,
	"Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>,
	linux-kernel@vger.kernel.org, linux-gpio@vger.kernel.org,
	linux-acpi@vger.kernel.org, linux-i2c@vger.kernel.org,
	"Rafael J. Wysocki" <rafael@kernel.org>,
	"Mika Westerberg" <mika.westerberg@linux.intel.com>,
	"Linus Walleij" <linus.walleij@linaro.org>,
	"Bartosz Golaszewski" <brgl@bgdev.pl>,
	"Wolfram Sang" <wsa@kernel.org>
Subject: Re: [PATCH v1 1/3] driver core: Provide device_match_acpi_handle() helper
Date: Wed, 6 Oct 2021 19:20:43 +0200	[thread overview]
Message-ID: <YV3a69VgQT4dOKTH@kroah.com> (raw)
In-Reply-To: <20211006171517.47393-1-andriy.shevchenko@linux.intel.com>

On Wed, Oct 06, 2021 at 08:15:15PM +0300, Andy Shevchenko wrote:
> We have couple of users of this helper, make it available for them.
> 
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
>  drivers/base/core.c        | 6 ++++++
>  include/linux/device/bus.h | 1 +
>  2 files changed, 7 insertions(+)
> 
> diff --git a/drivers/base/core.c b/drivers/base/core.c
> index c4a2c97a21a2..18f1f6499246 100644
> --- a/drivers/base/core.c
> +++ b/drivers/base/core.c
> @@ -4840,6 +4840,12 @@ int device_match_acpi_dev(struct device *dev, const void *adev)
>  }
>  EXPORT_SYMBOL(device_match_acpi_dev);
>  
> +int device_match_acpi_handle(struct device *dev, const void *handle)
> +{
> +	return ACPI_HANDLE(dev) == handle;
> +}
> +EXPORT_SYMBOL(device_match_acpi_dev);

Did you build this?

:(


  parent reply	other threads:[~2021-10-06 17:20 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-06 17:15 [PATCH v1 1/3] driver core: Provide device_match_acpi_handle() helper Andy Shevchenko
2021-10-06 17:15 ` [PATCH v1 2/3] i2c: acpi: Replace custom function with device_match_acpi_handle() Andy Shevchenko
2021-10-06 17:15 ` [PATCH v1 3/3] gpiolib: acpi: Replace custom code " Andy Shevchenko
2021-10-06 17:20 ` Greg Kroah-Hartman [this message]
2021-10-06 17:24   ` [PATCH v1 1/3] driver core: Provide device_match_acpi_handle() helper Andy Shevchenko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=YV3a69VgQT4dOKTH@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=brgl@bgdev.pl \
    --cc=linus.walleij@linaro.org \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-i2c@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mika.westerberg@linux.intel.com \
    --cc=rafael@kernel.org \
    --cc=saravanak@google.com \
    --cc=u.kleine-koenig@pengutronix.de \
    --cc=wsa@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.