From: Mika Westerberg <mika.westerberg@linux.intel.com>
To: Kefeng Wang <wangkefeng.wang@huawei.com>
Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>,
Arnd Bergmann <arnd@arndb.de>, Hanjun Guo <hanjun.guo@linaro.org>,
linux-acpi@vger.kernel.org, linux-arm-kernel@lists.infradead.org
Subject: Re: [RFC PATCH 1/4] acpi: property: Introduce helper acpi_dev_get_reference_device()
Date: Wed, 2 Dec 2015 11:20:39 +0200 [thread overview]
Message-ID: <20151202092039.GL1593@lahna.fi.intel.com> (raw)
In-Reply-To: <1449047368-5768-2-git-send-email-wangkefeng.wang@huawei.com>
On Wed, Dec 02, 2015 at 05:09:25PM +0800, Kefeng Wang wrote:
> Like of_parse_phandle() helper function to read and parse a phandle property
> and return a pointer to the resulting device_node, introduce helper function
> acpi_dev_get_reference_device() to read and parse a device properties(used in
> _DSD method) and return a pointer to the resulting acpi_device.
>
> Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>
> ---
> drivers/acpi/property.c | 23 +++++++++++++++++++++++
> include/linux/acpi.h | 7 +++++++
> 2 files changed, 30 insertions(+)
>
> diff --git a/drivers/acpi/property.c b/drivers/acpi/property.c
> index 88f4306..e2e7754 100644
> --- a/drivers/acpi/property.c
> +++ b/drivers/acpi/property.c
> @@ -398,6 +398,29 @@ int acpi_dev_get_property(struct acpi_device *adev, const char *name,
> }
> EXPORT_SYMBOL_GPL(acpi_dev_get_property);
>
> +/**
> + * acpi_dev_get_reference_device - return the acpi_device referenced
> + * @adev: ACPI device to get the property from.
> + * @name: Name of the property.
> + * @index: Index of the reference to return
> + *
> + * Returns referenced ACPI device pointer, or NULL if not found
> + */
> +struct acpi_device *acpi_dev_get_reference_device(struct acpi_device *adev,
> + const char *name, size_t index)
> +{
> + struct acpi_reference_args args;
> + int ret;
> +
> + ret = acpi_node_get_property_reference(acpi_fwnode_handle(adev), name, index, &args);
> +
> + if (ret)
> + return NULL;
> +
> + return args.adev;
> +}
> +EXPORT_SYMBOL(acpi_dev_get_reference_device);
This wrapper looks pretty useless honestly. Why not use
acpi_node_get_property_reference() directly if you need to get the
device reference?
Also you should use EXPORT_SYMBOL_GPL() here.
WARNING: multiple messages have this Message-ID (diff)
From: mika.westerberg@linux.intel.com (Mika Westerberg)
To: linux-arm-kernel@lists.infradead.org
Subject: [RFC PATCH 1/4] acpi: property: Introduce helper acpi_dev_get_reference_device()
Date: Wed, 2 Dec 2015 11:20:39 +0200 [thread overview]
Message-ID: <20151202092039.GL1593@lahna.fi.intel.com> (raw)
In-Reply-To: <1449047368-5768-2-git-send-email-wangkefeng.wang@huawei.com>
On Wed, Dec 02, 2015 at 05:09:25PM +0800, Kefeng Wang wrote:
> Like of_parse_phandle() helper function to read and parse a phandle property
> and return a pointer to the resulting device_node, introduce helper function
> acpi_dev_get_reference_device() to read and parse a device properties(used in
> _DSD method) and return a pointer to the resulting acpi_device.
>
> Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>
> ---
> drivers/acpi/property.c | 23 +++++++++++++++++++++++
> include/linux/acpi.h | 7 +++++++
> 2 files changed, 30 insertions(+)
>
> diff --git a/drivers/acpi/property.c b/drivers/acpi/property.c
> index 88f4306..e2e7754 100644
> --- a/drivers/acpi/property.c
> +++ b/drivers/acpi/property.c
> @@ -398,6 +398,29 @@ int acpi_dev_get_property(struct acpi_device *adev, const char *name,
> }
> EXPORT_SYMBOL_GPL(acpi_dev_get_property);
>
> +/**
> + * acpi_dev_get_reference_device - return the acpi_device referenced
> + * @adev: ACPI device to get the property from.
> + * @name: Name of the property.
> + * @index: Index of the reference to return
> + *
> + * Returns referenced ACPI device pointer, or NULL if not found
> + */
> +struct acpi_device *acpi_dev_get_reference_device(struct acpi_device *adev,
> + const char *name, size_t index)
> +{
> + struct acpi_reference_args args;
> + int ret;
> +
> + ret = acpi_node_get_property_reference(acpi_fwnode_handle(adev), name, index, &args);
> +
> + if (ret)
> + return NULL;
> +
> + return args.adev;
> +}
> +EXPORT_SYMBOL(acpi_dev_get_reference_device);
This wrapper looks pretty useless honestly. Why not use
acpi_node_get_property_reference() directly if you need to get the
device reference?
Also you should use EXPORT_SYMBOL_GPL() here.
next prev parent reply other threads:[~2015-12-02 9:21 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-02 9:09 [RFC PATCH 0/4] add ACPI support for syscon Kefeng Wang
2015-12-02 9:09 ` Kefeng Wang
2015-12-02 9:09 ` [RFC PATCH 1/4] acpi: property: Introduce helper acpi_dev_get_reference_device() Kefeng Wang
2015-12-02 9:09 ` Kefeng Wang
2015-12-02 9:20 ` Mika Westerberg [this message]
2015-12-02 9:20 ` Mika Westerberg
2015-12-02 9:09 ` [RFC PATCH 2/4] device property: Introduce helper device_get_reference_node() Kefeng Wang
2015-12-02 9:09 ` Kefeng Wang
2015-12-03 15:28 ` Russell King - ARM Linux
2015-12-03 15:28 ` Russell King - ARM Linux
2015-12-03 23:29 ` Rafael J. Wysocki
2015-12-03 23:29 ` Rafael J. Wysocki
2015-12-04 1:02 ` Rafael J. Wysocki
2015-12-04 1:02 ` Rafael J. Wysocki
2015-12-11 12:35 ` Lorenzo Pieralisi
2015-12-11 12:35 ` Lorenzo Pieralisi
2015-12-02 9:09 ` [RFC PATCH 3/4] ACPI/platform: Introduce helper acpi_dev_find_plat_dev() Kefeng Wang
2015-12-02 9:09 ` Kefeng Wang
2015-12-02 9:09 ` [RFC PATCH 4/4] mfd: syscon: add ACPI support Kefeng Wang
2015-12-02 9:09 ` Kefeng Wang
2015-12-02 10:44 ` Arnd Bergmann
2015-12-02 10:44 ` Arnd Bergmann
2015-12-03 10:41 ` Graeme Gregory
2015-12-03 10:41 ` Graeme Gregory
2015-12-03 13:01 ` Kefeng Wang
2015-12-03 13:01 ` Kefeng Wang
2015-12-03 15:56 ` Lorenzo Pieralisi
2015-12-03 15:56 ` Lorenzo Pieralisi
2015-12-07 6:15 ` Kefeng Wang
2015-12-07 6:15 ` Kefeng Wang
2015-12-07 8:47 ` Arnd Bergmann
2015-12-07 8:47 ` Arnd Bergmann
2015-12-11 10:35 ` Zhangfei Gao
2015-12-11 10:35 ` Zhangfei Gao
2015-12-11 10:51 ` Arnd Bergmann
2015-12-11 10:51 ` Arnd Bergmann
2015-12-11 10:59 ` Graeme Gregory
2015-12-11 10:59 ` Graeme Gregory
2015-12-11 12:23 ` Hanjun Guo
2015-12-11 12:23 ` Hanjun Guo
2015-12-02 10:50 ` [RFC PATCH 0/4] add ACPI support for syscon Lorenzo Pieralisi
2015-12-02 10:50 ` Lorenzo Pieralisi
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=20151202092039.GL1593@lahna.fi.intel.com \
--to=mika.westerberg@linux.intel.com \
--cc=arnd@arndb.de \
--cc=hanjun.guo@linaro.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=rjw@rjwysocki.net \
--cc=wangkefeng.wang@huawei.com \
/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.