From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
To: Hans de Goede <hdegoede@redhat.com>,
Jeremy Cline <jeremy@jcline.org>,
Liam Girdwood <lgirdwood@gmail.com>,
Mark Brown <broonie@kernel.org>
Cc: linux-kernel@vger.kernel.org, alsa-devel@alsa-project.org,
Takashi Iwai <tiwai@suse.com>
Subject: Re: [alsa-devel] [PATCH] ASoC: Intel: common: Replace sst_acpi_check_hid with acpi_dev_present
Date: Fri, 10 Nov 2017 08:39:37 -0600 [thread overview]
Message-ID: <b0794da6-d51b-268c-3d22-289bb000ca30@linux.intel.com> (raw)
In-Reply-To: <2c94120e-74b3-052f-a86f-fa3a95af9095@redhat.com>
On 11/10/2017 05:33 AM, Hans de Goede wrote:
> Hi,
>
> On 09-11-17 22:07, Jeremy Cline wrote:
>> Replace the sst_acpi_check_hid helper function added in
>> commit 915ae2b9f0fe ("ASoC: Intel: Create a helper to search for
>> matching machine") with the generic acpi_dev_present helper function
>> and remove the now unused sst_acpi_check_hid function. This should have
>> no functional change.
>>
>> Signed-off-by: Jeremy Cline <jeremy@jcline.org>
>
> I've just successfully tested this on an Assu T100HA:
>
> Tested-by: Hans de Goede <hdegoede@redhat.com>
> Reviewed-by: Hans de Goede <hdegoede@redhat.com>
I don't mind this change, but I'd also like to see a bit more testing
with weird devices to check that the code is indeed equivalent (not
obvious from a quick code inspection). Surface 3 was broken recently due
to lack of testing of a change that 'should have been functionally
equivalent'.
Also this patch will not apply, the code was changed to remove any
reference to the sst driver, you need to rebase against broonie/for-next.
>
> Regards,
>
> Hans
>
>
>
>> ---
>> sound/soc/intel/common/sst-acpi.h | 3 ---
>> sound/soc/intel/common/sst-match-acpi.c | 32
>> ++------------------------------
>> 2 files changed, 2 insertions(+), 33 deletions(-)
>>
>> diff --git a/sound/soc/intel/common/sst-acpi.h
>> b/sound/soc/intel/common/sst-acpi.h
>> index afe9b87b8bd5..d7facac83b7e 100644
>> --- a/sound/soc/intel/common/sst-acpi.h
>> +++ b/sound/soc/intel/common/sst-acpi.h
>> @@ -43,9 +43,6 @@ static inline bool
>> sst_acpi_find_package_from_hid(const u8 hid[ACPI_ID_LEN],
>> /* acpi match */
>> struct sst_acpi_mach *sst_acpi_find_machine(struct sst_acpi_mach
>> *machines);
>> -/* acpi check hid */
>> -bool sst_acpi_check_hid(const u8 hid[ACPI_ID_LEN]);
>> -
>> /* Descriptor for SST ASoC machine driver */
>> struct sst_acpi_mach {
>> /* ACPI ID for the matching machine driver. Audio codec for
>> instance */
>> diff --git a/sound/soc/intel/common/sst-match-acpi.c
>> b/sound/soc/intel/common/sst-match-acpi.c
>> index 56d26f36a3cb..f8e1b92de79a 100644
>> --- a/sound/soc/intel/common/sst-match-acpi.c
>> +++ b/sound/soc/intel/common/sst-match-acpi.c
>> @@ -49,40 +49,12 @@ const char *sst_acpi_find_name_from_hid(const u8
>> hid[ACPI_ID_LEN])
>> }
>> EXPORT_SYMBOL_GPL(sst_acpi_find_name_from_hid);
>> -static acpi_status sst_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 sst_acpi_check_hid(const u8 hid[ACPI_ID_LEN])
>> -{
>> - acpi_status status;
>> - bool found = false;
>> -
>> - status = acpi_get_devices(hid, sst_acpi_mach_match, &found, NULL);
>> -
>> - if (ACPI_FAILURE(status))
>> - return false;
>> -
>> - return found;
>> -}
>> -EXPORT_SYMBOL_GPL(sst_acpi_check_hid);
>> -
>> struct sst_acpi_mach *sst_acpi_find_machine(struct sst_acpi_mach
>> *machines)
>> {
>> struct sst_acpi_mach *mach;
>> for (mach = machines; mach->id[0]; mach++) {
>> - if (sst_acpi_check_hid(mach->id) == true) {
>> + if (acpi_dev_present(mach->id, NULL, -1) == true) {
>> if (mach->machine_quirk == NULL)
>> return mach;
>> @@ -161,7 +133,7 @@ struct sst_acpi_mach *sst_acpi_codec_list(void
>> *arg)
>> return mach;
>> for (i = 0; i < codec_list->num_codecs; i++) {
>> - if (sst_acpi_check_hid(codec_list->codecs[i]) != true)
>> + if (acpi_dev_present(codec_list->codecs[i], NULL, -1) != true)
>> return NULL;
>> }
>>
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@alsa-project.org
> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
prev parent reply other threads:[~2017-11-10 14:39 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-09 21:07 [PATCH] ASoC: Intel: common: Replace sst_acpi_check_hid with acpi_dev_present Jeremy Cline
2017-11-10 11:33 ` Hans de Goede
2017-11-10 14:39 ` Pierre-Louis Bossart [this message]
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=b0794da6-d51b-268c-3d22-289bb000ca30@linux.intel.com \
--to=pierre-louis.bossart@linux.intel.com \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=hdegoede@redhat.com \
--cc=jeremy@jcline.org \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=tiwai@suse.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