system/audio.h: Make function inline

This patch makes the audio_device_address_to_parameter inline. All of the other
helpers defined in this header are inline functions except for this one and this
causes compile failures when -Werror=unused-function is used.

BUG=21339022

Change-Id: I7db58bf7bed3b89b6752ec2cd2c1f358ba2a4d89
This commit is contained in:
Arman Uguray 2015-05-29 16:09:45 -07:00
parent dd50edcbe7
commit 0aee2ac3a0
1 changed files with 1 additions and 1 deletions

View File

@ -1354,7 +1354,7 @@ static inline size_t audio_bytes_per_sample(audio_format_t format)
}
/* converts device address to string sent to audio HAL via set_parameters */
static char *audio_device_address_to_parameter(audio_devices_t device, const char *address)
static inline char *audio_device_address_to_parameter(audio_devices_t device, const char *address)
{
const size_t kSize = AUDIO_DEVICE_MAX_ADDRESS_LEN + sizeof("a2dp_sink_address=");
char param[kSize];