mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
9a6c3f99ed
- No patches were found with incorrect authorship/From: lines - The older AndroidHardening patch repos are no longer available to verify CID. - New GrapheneOS patches do not include a CID. - *Signature_Spoofing.patch CID could not be found. - Fixed CID of *Harden_Sig_Spoofing.patch to match 14.1 - Fixed CID of *LGE_Fixes.patch to match 14.1 - Fixed CID of *Harden.patch to match 14.1 - Added edit note to *Harden.patch - Fixed CID of *PREREQ_Handle_All_Modes.patch to match 14.1 - Fixed CID of *More_Preferred_Network_Modes.patch to match 14.1 - Fixed CID of *AES256.patch to match 14.1 - Fixed CID of *0001-OTA_Keys.patch to match 18.1 - Fixed CID of *Camera_Fix.patch to match 15.1 - Fixed CID of *Connectivity.patch to match 14.1 - Fixed CID of *Fix_Calling.patch to match 14.1 - Fixed CID of *Remove_Analytics.patch to match 14.1 - Fixed CID of Unused-*.patch/audio_extn to match original Signed-off-by: Tad <tad@spotco.us>
59 lines
2.3 KiB
Diff
59 lines
2.3 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: codeworkx <daniel.hillenbrand@codeworkx.de>
|
|
Date: Mon, 1 Jul 2019 06:36:30 +0000
|
|
Subject: [PATCH] audio_extn: Fix unused parameter warning in utils.c
|
|
|
|
The unused parameter warning appears if we are not building with
|
|
at least one of the following cflags enabled:
|
|
|
|
* DEV_ARBI_ENABLED
|
|
* SOUND_TRIGGER_ENABLED
|
|
* AUDIO_LISTEN_ENABLED
|
|
|
|
hardware/qcom/audio/hal/audio_extn/utils.c:2522:55: error: unused parameter 'snd_device'
|
|
[-Werror,-Wunused-parameter]
|
|
void audio_extn_utils_release_snd_device(snd_device_t snd_device)
|
|
|
|
Change-Id: I694c683c9bfde60343f0f6ea8d806bc5e24437e6
|
|
---
|
|
hal/audio_extn/audio_extn.h | 4 ++++
|
|
hal/audio_extn/utils.c | 2 ++
|
|
2 files changed, 6 insertions(+)
|
|
|
|
diff --git a/hal/audio_extn/audio_extn.h b/hal/audio_extn/audio_extn.h
|
|
index f37c948ec..c6b2051a7 100644
|
|
--- a/hal/audio_extn/audio_extn.h
|
|
+++ b/hal/audio_extn/audio_extn.h
|
|
@@ -815,7 +815,11 @@ bool audio_extn_utils_is_dolby_format(audio_format_t format);
|
|
int audio_extn_utils_get_bit_width_from_string(const char *);
|
|
int audio_extn_utils_get_sample_rate_from_string(const char *);
|
|
int audio_extn_utils_get_channels_from_string(const char *);
|
|
+#if !defined(DEV_ARBI_ENABLED) && !defined(SOUND_TRIGGER_ENABLED) && !defined(AUDIO_LISTEN_ENABLED)
|
|
+#define audio_extn_utils_release_snd_device(snd_device) (0)
|
|
+#else
|
|
void audio_extn_utils_release_snd_device(snd_device_t snd_device);
|
|
+#endif
|
|
bool audio_extn_utils_is_vendor_enhanced_fwk();
|
|
int audio_extn_utils_get_vendor_enhanced_info();
|
|
int audio_extn_utils_get_app_sample_rate_for_device(struct audio_device *adev,
|
|
diff --git a/hal/audio_extn/utils.c b/hal/audio_extn/utils.c
|
|
index 4675fc39c..4a5d91a97 100644
|
|
--- a/hal/audio_extn/utils.c
|
|
+++ b/hal/audio_extn/utils.c
|
|
@@ -2917,6 +2917,7 @@ int audio_extn_utils_get_channels_from_string(const char *id_string)
|
|
return -EINVAL;
|
|
}
|
|
|
|
+#if defined(DEV_ARBI_ENABLED) || defined(SOUND_TRIGGER_ENABLED) || defined(AUDIO_LISTEN_ENABLED)
|
|
void audio_extn_utils_release_snd_device(snd_device_t snd_device)
|
|
{
|
|
audio_extn_dev_arbi_release(snd_device);
|
|
@@ -2925,6 +2926,7 @@ void audio_extn_utils_release_snd_device(snd_device_t snd_device)
|
|
audio_extn_listen_update_device_status(snd_device,
|
|
LISTEN_EVENT_SND_DEVICE_FREE);
|
|
}
|
|
+#endif
|
|
|
|
int audio_extn_utils_get_license_params(
|
|
const struct audio_device *adev,
|