src/modules/bluetooth/module-bluetooth-discover.c | 4 ++-- src/modules/bluetooth/module-bluez5-discover.c | 1 + 2 files changed, 3 insertions(+), 2 deletions(-)
New commits: commit 32bd68bc313fd670738c21cf2e4d0086a0a75e89 Author: João Paulo Rechi Vita <[email protected]> Date: Mon Jul 9 19:27:16 2018 -0700 bluetooth: Remove leftover references to the BlueZ 4/5 split There is no need to mention a module argument is valid only when using BlueZ 5 now that we don't support BlueZ 4 anymore. diff --git a/src/modules/bluetooth/module-bluetooth-discover.c b/src/modules/bluetooth/module-bluetooth-discover.c index 63195d3e..cf8c7eef 100644 --- a/src/modules/bluetooth/module-bluetooth-discover.c +++ b/src/modules/bluetooth/module-bluetooth-discover.c @@ -30,8 +30,8 @@ PA_MODULE_DESCRIPTION("Detect available Bluetooth daemon and load the correspond PA_MODULE_VERSION(PACKAGE_VERSION); PA_MODULE_LOAD_ONCE(true); PA_MODULE_USAGE( - "headset=ofono|native|auto (bluez 5 only)" - "autodetect_mtu=<boolean> (bluez 5 only)" + "headset=ofono|native|auto" + "autodetect_mtu=<boolean>" ); struct userdata { commit 4863d190e254be3d33ab259c74d71fb693a07188 Author: João Paulo Rechi Vita <[email protected]> Date: Mon Jul 9 19:25:53 2018 -0700 bluetooth: Add missing argument to module's usage module-bluetooth-discover usage was missing the autodetect_mtu argument. diff --git a/src/modules/bluetooth/module-bluez5-discover.c b/src/modules/bluetooth/module-bluez5-discover.c index 44578214..b6c8eb05 100644 --- a/src/modules/bluetooth/module-bluez5-discover.c +++ b/src/modules/bluetooth/module-bluez5-discover.c @@ -36,6 +36,7 @@ PA_MODULE_VERSION(PACKAGE_VERSION); PA_MODULE_LOAD_ONCE(true); PA_MODULE_USAGE( "headset=ofono|native|auto" + "autodetect_mtu=<boolean>" ); static const char* const valid_modargs[] = { _______________________________________________ pulseaudio-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/pulseaudio-commits
