From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> This uses the btd_profile.experimental to mark the driver as experimental. --- plugins/admin.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/plugins/admin.c b/plugins/admin.c index 0787e8381ed7..68e9237d3fbd 100644 --- a/plugins/admin.c +++ b/plugins/admin.c @@ -618,13 +618,12 @@ static struct btd_adapter_driver admin_policy_driver = { .resume = NULL, .remove = admin_policy_remove, .device_resolved = admin_policy_device_added, - .device_removed = admin_policy_device_removed + .device_removed = admin_policy_device_removed, + .experimental = true, }; static int admin_init(void) { - DBG(""); - dbus_conn = btd_get_dbus_connection(); return btd_register_adapter_driver(&admin_policy_driver); @@ -632,8 +631,6 @@ static int admin_init(void) static void admin_exit(void) { - DBG(""); - btd_unregister_adapter_driver(&admin_policy_driver); } -- 2.40.1