hal: add missed brace to fix compile issue
One closing brace is missed in the condition and compile fails.
Add the missed brace to fix it.
Change-Id: Ibac67761b256dacc64afd13ce61ff56ca7385c18
diff --git a/hal/msm8974/hw_info.c b/hal/msm8974/hw_info.c
index 0d03208..1b46bf4 100644
--- a/hal/msm8974/hw_info.c
+++ b/hal/msm8974/hw_info.c
@@ -555,7 +555,7 @@
sizeof("sdm670-skuw-snd-card"))) {
hw_info->is_stereo_spkr = false;
} else if ( !strncmp(snd_card_name, "sdm670-tavil-hdk-snd-card",
- sizeof("sdm670-tavil-hdk-snd-card")) {
+ sizeof("sdm670-tavil-hdk-snd-card"))) {
strlcpy(hw_info->type, " hdk", sizeof(hw_info->type));
strlcpy(hw_info->name, "sdm670", sizeof(hw_info->name));
hw_info->snd_devices = (snd_device_t *)tavil_qrd_variant_devices;