[pulseaudio-discuss] [PATCH] bluetooth: bluez4: Remove the unused "auto_connect" parameter as it is not used in bluez4
Manish Sogi
manish.sogi at samsung.com
Mon Jun 15 05:16:05 PDT 2015
<EP-F69A421D31544C56BDE97C590307C014>
Signed-off-by: Manish Sogi <manish.sogi at samsung.com>
---
src/modules/bluetooth/module-bluez4-device.c | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/src/modules/bluetooth/module-bluez4-device.c b/src/modules/bluetooth/module-bluez4-device.c
index db69d34..a23c2a9 100644
--- a/src/modules/bluetooth/module-bluez4-device.c
+++ b/src/modules/bluetooth/module-bluez4-device.c
@@ -75,7 +75,6 @@ PA_MODULE_USAGE(
"rate=<sample rate> "
"channels=<number of channels> "
"path=<device object path> "
- "auto_connect=<automatically connect?> "
"sco_sink=<SCO over PCM sink name> "
"sco_source=<SCO over PCM source name>");
@@ -94,7 +93,6 @@ static const char* const valid_modargs[] = {
"rate",
"channels",
"path",
- "auto_connect",
"sco_sink",
"sco_source",
NULL
@@ -148,7 +146,6 @@ struct userdata {
pa_hook_slot *transport_speaker_changed_slot;
pa_bluez4_discovery *discovery;
- bool auto_connect;
char *output_port_name;
char *input_port_name;
@@ -2460,12 +2457,6 @@ int pa__init(pa_module *m) {
goto fail;
}
- u->auto_connect = true;
- if (pa_modargs_get_value_boolean(ma, "auto_connect", &u->auto_connect)) {
- pa_log("Failed to parse auto_connect= argument");
- goto fail;
- }
-
channels = u->sample_spec.channels;
if (pa_modargs_get_value_u32(ma, "channels", &channels) < 0 ||
!pa_channels_valid(channels)) {
--
1.7.9.5
More information about the pulseaudio-discuss
mailing list