summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2017-05-04 12:53:32 +0200
committerGeorg Chini <georg@chini.tk>2017-05-04 12:58:21 +0200
commit956e72135e9ed67a010399761b379c23e81ec3ea (patch)
treeb4353f74f08a98425fcf0e35d9544a965967e07e
parentf45fc03e3d5d33d1a3046b9233e3aea8227a3c57 (diff)
downloadpulseaudio-956e72135e9ed67a010399761b379c23e81ec3ea.tar.gz
bluetooth: Don't default to native backend
The native backend is limited to HSP only which may not work with devices that can only do HFP so if oFono is enabled it shall be used as default.
-rw-r--r--src/modules/bluetooth/module-bluez5-discover.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/bluetooth/module-bluez5-discover.c b/src/modules/bluetooth/module-bluez5-discover.c
index bc5dbd49e..97ff94357 100644
--- a/src/modules/bluetooth/module-bluez5-discover.c
+++ b/src/modules/bluetooth/module-bluez5-discover.c
@@ -93,7 +93,7 @@ static pa_hook_result_t device_connection_changed_cb(pa_bluetooth_discovery *y,
}
#ifdef HAVE_BLUEZ_5_NATIVE_HEADSET
-const char *default_headset_backend = "native";
+const char *default_headset_backend = "auto";
#else
const char *default_headset_backend = "ofono";
#endif