diff options
author | Luiz Augusto von Dentz <luiz.dentz@openbossa.org> | 2008-06-26 14:44:01 +0000 |
---|---|---|
committer | Luiz Augusto von Dentz <luiz.dentz@openbossa.org> | 2008-06-26 14:44:01 +0000 |
commit | 36dedff329b5ced8979a2161075e6a9d38c58785 (patch) | |
tree | 67d1b87e88144974eede84c57f72a66882ac9e3c /hcid/adapter.c | |
parent | 1e8fbfbfa6fbcf88a668f77e5601bbc505eb483f (diff) |
Fix probing and removing drivers when discovering services.
Diffstat (limited to 'hcid/adapter.c')
-rw-r--r-- | hcid/adapter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hcid/adapter.c b/hcid/adapter.c index 5e8b4a27..75aa31a4 100644 --- a/hcid/adapter.c +++ b/hcid/adapter.c @@ -2416,7 +2416,7 @@ struct device *adapter_create_device(DBusConnection *conn, debug("adapter_create_device(%s)", address); - device = device_create(conn, adapter, address, NULL); + device = device_create(conn, adapter, address); if (!device) return NULL; @@ -3980,7 +3980,7 @@ static DBusMessage *create_device(DBusConnection *conn, debug("create_device(%s)", address); - device = device_create(conn, adapter, address, NULL); + device = device_create(conn, adapter, address); if (!device) return NULL; |