diff options
author | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2022-01-26 22:48:49 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2022-02-01 10:08:08 +0300 |
commit | ff4865b3c8cd746ef72f59bdd485848b4cebd43d (patch) | |
tree | 636d5fb4d152690f4f90987fc09e26aa10b7ea3a /sound/soc/soc-acpi.c | |
parent | 94db9cc8f8fa2d5426ce79ec4ca16028f7084224 (diff) | |
download | linux-ff4865b3c8cd746ef72f59bdd485848b4cebd43d.tar.xz |
ALSA: Replace acpi_bus_get_device()
Replace acpi_bus_get_device() that is going to be dropped with
acpi_fetch_acpi_dev().
No intentional functional impact.
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Link: https://lore.kernel.org/r/2828205.e9J7NaK4W3@kreacher
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/soc/soc-acpi.c')
-rw-r--r-- | sound/soc/soc-acpi.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sound/soc/soc-acpi.c b/sound/soc/soc-acpi.c index cbd7ea48837b..142476f1396f 100644 --- a/sound/soc/soc-acpi.c +++ b/sound/soc/soc-acpi.c @@ -55,16 +55,13 @@ EXPORT_SYMBOL_GPL(snd_soc_acpi_find_machine); static acpi_status snd_soc_acpi_find_package(acpi_handle handle, u32 level, void *context, void **ret) { - struct acpi_device *adev; + struct acpi_device *adev = acpi_fetch_acpi_dev(handle); acpi_status status; struct snd_soc_acpi_package_context *pkg_ctx = context; pkg_ctx->data_valid = false; - if (acpi_bus_get_device(handle, &adev)) - return AE_OK; - - if (adev->status.present && adev->status.functional) { + if (adev && adev->status.present && adev->status.functional) { struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL}; union acpi_object *myobj = NULL; |