From f0e152e16102de80b7fe8510f455f993980ebb2f Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Thu, 10 Jul 2008 18:35:04 -0300 Subject: Remove deprecated object paths and files. --- hcid/device.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'hcid/device.c') diff --git a/hcid/device.c b/hcid/device.c index 7a519716..00f77aa4 100644 --- a/hcid/device.c +++ b/hcid/device.c @@ -1576,20 +1576,18 @@ int btd_register_device_driver(struct btd_device_driver *driver) { const char **uuid; + /* FIXME: hack to make hci to resolve service_req_auth symbol*/ + service_req_auth(NULL, NULL, NULL, NULL, NULL); drivers = g_slist_append(drivers, driver); for (uuid = driver->uuids; *uuid; uuid++) { debug("name %s uuid %s", driver->name, *uuid); } - register_service(driver->name, driver->uuids); - return 0; } void btd_unregister_device_driver(struct btd_device_driver *driver) { - unregister_service(driver->name); - drivers = g_slist_remove(drivers, driver); } -- cgit