aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2006-10-15 17:30:50 +0200
committerDavid S. Miller <davem@sunset.davemloft.net>2006-10-15 23:14:29 -0700
commite9c4bec63eac001651d6d30239dd4175cc3698ef (patch)
tree1410a855bc5312b485ba0c91e1dc3c59c9ca4f75 /net/bluetooth
parent[Bluetooth] Handle return values from driver core functions (diff)
downloadlinux-dev-e9c4bec63eac001651d6d30239dd4175cc3698ef.tar.xz
linux-dev-e9c4bec63eac001651d6d30239dd4175cc3698ef.zip
[Bluetooth] Make use of virtual devices tree
The Bluetooth subsystem currently uses a platform device for devices with no parent. It is a better idea to use the new virtual devices tree for these. Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth')
-rw-r--r--net/bluetooth/hci_sysfs.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/net/bluetooth/hci_sysfs.c b/net/bluetooth/hci_sysfs.c
index c7e079d3c486..954eb74eb370 100644
--- a/net/bluetooth/hci_sysfs.c
+++ b/net/bluetooth/hci_sysfs.c
@@ -299,11 +299,7 @@ int hci_register_sysfs(struct hci_dev *hdev)
BT_DBG("%p name %s type %d", hdev, hdev->name, hdev->type);
dev->class = bt_class;
-
- if (hdev->parent)
- dev->parent = hdev->parent;
- else
- dev->parent = &bt_platform->dev;
+ dev->parent = hdev->parent;
strlcpy(dev->bus_id, hdev->name, BUS_ID_SIZE);