From e3d4217d0d3d1723b2d5629c232d9e41e9e047bf Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Sat, 17 Jun 2006 11:31:24 +0000 Subject: Don't configure raw devices --- hcid/dbus.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hcid/dbus.c b/hcid/dbus.c index 53bf7b24..d124c76f 100644 --- a/hcid/dbus.c +++ b/hcid/dbus.c @@ -427,6 +427,7 @@ int hcid_dbus_register_device(uint16_t id) DBusMessage *message = NULL; int i, err, dd = -1, ret = -1; read_scan_enable_rp rp; + struct hci_dev_info di; struct hci_request rq; struct hci_dbus_data* pdata; struct hci_conn_list_req *cl = NULL; @@ -434,6 +435,14 @@ int hcid_dbus_register_device(uint16_t id) snprintf(path, sizeof(path), "%s/hci%d", BASE_PATH, id); if (register_dbus_path(path, id, &obj_dev_vtable, FALSE) < 0) + return -1; + + if (hci_devinfo(id, &di) < 0) { + error("Getting device info failed: hci%d", id); + return -1; + } + + if (hci_test_bit(HCI_RAW, &di.flags)) return -1; dd = hci_open_dev(id); -- cgit