summaryrefslogtreecommitdiffstats
path: root/audio_a2dp_hw/audio_a2dp_hw.c
diff options
context:
space:
mode:
Diffstat (limited to 'audio_a2dp_hw/audio_a2dp_hw.c')
-rw-r--r--audio_a2dp_hw/audio_a2dp_hw.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/audio_a2dp_hw/audio_a2dp_hw.c b/audio_a2dp_hw/audio_a2dp_hw.c
index 93eaec2..345930b 100644
--- a/audio_a2dp_hw/audio_a2dp_hw.c
+++ b/audio_a2dp_hw/audio_a2dp_hw.c
@@ -1064,13 +1064,6 @@ static int adev_close(hw_device_t *device)
return 0;
}
-static uint32_t adev_get_supported_devices(const struct audio_hw_device *dev)
-{
- FNLOG();
-
- return (AUDIO_DEVICE_OUT_ALL_A2DP);
-}
-
static int adev_open(const hw_module_t* module, const char* name,
hw_device_t** device)
{
@@ -1096,7 +1089,6 @@ static int adev_open(const hw_module_t* module, const char* name,
adev->device.common.module = (struct hw_module_t *) module;
adev->device.common.close = adev_close;
- adev->device.get_supported_devices = adev_get_supported_devices;
adev->device.init_check = adev_init_check;
adev->device.set_voice_volume = adev_set_voice_volume;
adev->device.set_master_volume = adev_set_master_volume;