From: Pierre-Louis Bossart Date: Fri, 16 Apr 2021 19:11:40 +0000 (-0500) Subject: ASoC: soc-acpi: remove useless initialization X-Git-Tag: v5.13-rc1~18^2~25^2^2~20^2~4 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=59ce3233a538fc21c5c59ff38cafd784cbcd6de0;p=tomoyo%2Ftomoyo-test1.git ASoC: soc-acpi: remove useless initialization cppcheck warning: value that is never used. [unreadVariable] acpi_status status = AE_OK; ^ sound/soc/soc-acpi.c:37:21: style: Variable 'status' is assigned a Signed-off-by: Pierre-Louis Bossart Reviewed-by: Daniel Baluta Reviewed-by: Guennadi Liakhovetski Link: https://lore.kernel.org/r/20210416191144.27006-2-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/soc-acpi.c b/sound/soc/soc-acpi.c index 444ce0602f76..395229bf5c51 100644 --- a/sound/soc/soc-acpi.c +++ b/sound/soc/soc-acpi.c @@ -34,7 +34,7 @@ static acpi_status snd_soc_acpi_find_package(acpi_handle handle, u32 level, void *context, void **ret) { struct acpi_device *adev; - acpi_status status = AE_OK; + acpi_status status; struct snd_soc_acpi_package_context *pkg_ctx = context; pkg_ctx->data_valid = false;