projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
df5c37e
)
[Bluetooth] Make use of virtual devices tree
author
Marcel Holtmann
<marcel@holtmann.org>
Sun, 15 Oct 2006 15:30:50 +0000
(17:30 +0200)
committer
David S. Miller
<davem@sunset.davemloft.net>
Mon, 16 Oct 2006 06:14:29 +0000
(23:14 -0700)
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>
net/bluetooth/hci_sysfs.c
patch
|
blob
|
history
diff --git
a/net/bluetooth/hci_sysfs.c
b/net/bluetooth/hci_sysfs.c
index c7e079d3c486c08bccf208f1f0bd36d7256a3e03..954eb74eb370a34cb97050c9bec17e8cbfdff08c 100644
(file)
--- 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);