From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
To: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>,
alsa-devel@alsa-project.org
Cc: tiwai@suse.de, vinod.koul@intel.com, broonie@kernel.org,
jeremy@jcline.org, liam.r.girdwood@linux.intel.com
Subject: Re: [PATCH 2/3] ASoC: Replace snd_soc_acpi_check_hid with acpi_dev_present
Date: Thu, 04 Jan 2018 15:09:59 +0200 [thread overview]
Message-ID: <1515071399.7000.670.camel@linux.intel.com> (raw)
In-Reply-To: <20180103170242.5363-3-pierre-louis.bossart@linux.intel.com>
On Wed, 2018-01-03 at 11:02 -0600, Pierre-Louis Bossart wrote:
> From: Jeremy Cline <jeremy@jcline.org>
>
> Replace snd_soc_acpi_check_hid() with the generic acpi_dev_present()
> and remove the now unused snd_soc_acpi_check_hid function. This should
>
> have no functional change.
Nice catch!
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
>
> Signed-off-by: Jeremy Cline <jeremy@jcline.org>
> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.
> com>
> ---
> include/sound/soc-acpi.h | 3 ---
> sound/soc/soc-acpi.c | 32 ++------------------------------
> 2 files changed, 2 insertions(+), 33 deletions(-)
>
> diff --git a/include/sound/soc-acpi.h b/include/sound/soc-acpi.h
> index a93436089bf5..d1aaf876cd26 100644
> --- a/include/sound/soc-acpi.h
> +++ b/include/sound/soc-acpi.h
> @@ -50,9 +50,6 @@ snd_soc_acpi_find_package_from_hid(const u8
> hid[ACPI_ID_LEN],
> struct snd_soc_acpi_mach *
> snd_soc_acpi_find_machine(struct snd_soc_acpi_mach *machines);
>
> -/* acpi check hid */
> -bool snd_soc_acpi_check_hid(const u8 hid[ACPI_ID_LEN]);
> -
> /**
> * snd_soc_acpi_mach: ACPI-based machine descriptor. Most of the
> fields are
> * related to the hardware, except for the firmware and topology file
> names.
> diff --git a/sound/soc/soc-acpi.c b/sound/soc/soc-acpi.c
> index e103f3571b55..06d2aaccdb32 100644
> --- a/sound/soc/soc-acpi.c
> +++ b/sound/soc/soc-acpi.c
> @@ -49,41 +49,13 @@ const char *snd_soc_acpi_find_name_from_hid(const
> u8 hid[ACPI_ID_LEN])
> }
> EXPORT_SYMBOL_GPL(snd_soc_acpi_find_name_from_hid);
>
> -static acpi_status snd_soc_acpi_mach_match(acpi_handle handle, u32
> level,
> - void *context, void **ret)
> -{
> - unsigned long long sta;
> - acpi_status status;
> -
> - *(bool *)context = true;
> - status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
> - if (ACPI_FAILURE(status) || !(sta & ACPI_STA_DEVICE_PRESENT))
> - *(bool *)context = false;
> -
> - return AE_OK;
> -}
> -
> -bool snd_soc_acpi_check_hid(const u8 hid[ACPI_ID_LEN])
> -{
> - acpi_status status;
> - bool found = false;
> -
> - status = acpi_get_devices(hid, snd_soc_acpi_mach_match,
> &found, NULL);
> -
> - if (ACPI_FAILURE(status))
> - return false;
> -
> - return found;
> -}
> -EXPORT_SYMBOL_GPL(snd_soc_acpi_check_hid);
> -
> struct snd_soc_acpi_mach *
> snd_soc_acpi_find_machine(struct snd_soc_acpi_mach *machines)
> {
> struct snd_soc_acpi_mach *mach;
>
> for (mach = machines; mach->id[0]; mach++) {
> - if (snd_soc_acpi_check_hid(mach->id) == true) {
> + if (acpi_dev_present(mach->id, NULL, -1)) {
> if (mach->machine_quirk(mach) != NULL)
> mach = mach->machine_quirk(mach);
> return mach;
> @@ -161,7 +133,7 @@ struct snd_soc_acpi_mach
> *snd_soc_acpi_codec_list(void *arg)
> return mach;
>
> for (i = 0; i < codec_list->num_codecs; i++) {
> - if (snd_soc_acpi_check_hid(codec_list->codecs[i]) !=
> true)
> + if (!acpi_dev_present(codec_list->codecs[i], NULL,
> -1))
> return NULL;
> }
>
--
Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Intel Finland Oy
next prev parent reply other threads:[~2018-01-04 13:23 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-03 17:02 [PATCH 0/3] ASoC: Intel: ACPI-related fixes Pierre-Louis Bossart
2018-01-03 17:02 ` [PATCH 1/3] [PATCH] ASoC: acpi: fix machine driver selection based on quirk Pierre-Louis Bossart
2018-01-04 13:08 ` Andy Shevchenko
2018-01-04 15:18 ` Pierre-Louis Bossart
2018-01-05 0:58 ` Pierre-Louis Bossart
2018-01-03 17:02 ` [PATCH 2/3] ASoC: Replace snd_soc_acpi_check_hid with acpi_dev_present Pierre-Louis Bossart
2018-01-04 13:09 ` Andy Shevchenko [this message]
2018-01-03 17:02 ` [PATCH 3/3] ASoC: Intel: bytcht_es8316: fix HID handling Pierre-Louis Bossart
2018-01-04 14:57 ` Andy Shevchenko
2018-01-04 15:24 ` Pierre-Louis Bossart
2018-01-04 16:00 ` Andy Shevchenko
2018-01-04 17:06 ` Pierre-Louis Bossart
2018-01-04 17:13 ` Andy Shevchenko
2018-01-12 21:09 ` Applied "ASoC: Intel: bytcht_es8316: fix HID handling" to the asoc tree Mark Brown
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=1515071399.7000.670.camel@linux.intel.com \
--to=andriy.shevchenko@linux.intel.com \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=jeremy@jcline.org \
--cc=liam.r.girdwood@linux.intel.com \
--cc=pierre-louis.bossart@linux.intel.com \
--cc=tiwai@suse.de \
--cc=vinod.koul@intel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox