From 24cce397c3479e95f3e525da9285234fbafd2984 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Wed, 28 May 2008 13:11:05 +0000 Subject: Add first skeletion of device driver integration --- hcid/device.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'hcid/device.c') diff --git a/hcid/device.c b/hcid/device.c index 850ce1af..f8550b4a 100644 --- a/hcid/device.c +++ b/hcid/device.c @@ -1163,3 +1163,23 @@ int device_browse(struct device *device, DBusConnection *conn, str2ba(device->address, &dst); return bt_discover_services(&src, &dst, browse_cb, req, NULL); } + +static GSList *drivers = NULL; + +int btd_register_device_driver(struct btd_device_driver *driver) +{ + const char **uuid; + + drivers = g_slist_append(drivers, driver); + + for (uuid = driver->uuids; *uuid; uuid++) { + debug("name %s uuid %s", driver->name, *uuid); + } + + return 0; +} + +void btd_unregister_device_driver(struct btd_device_driver *driver) +{ + drivers = g_slist_remove(drivers, driver); +} -- cgit