* some typos

* a driver can register children and have a fixed child (ie for a bus manager).


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25799 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval
2008-06-03 21:05:58 +00:00
parent a5f249c795
commit 5b8d33bd75
@@ -1325,7 +1325,6 @@ device_node::Register(device_node* parent)
} }
if (registered > 0) { if (registered > 0) {
fRegistered = true; fRegistered = true;
return B_OK;
} }
// Register the children the driver wants // Register the children the driver wants
@@ -1355,7 +1354,7 @@ device_node::Register(device_node* parent)
} }
/*! Registers any children that are identified via the B_DRIVER_FIXED_CHILD /*! Registers any children that are identified via the B_DEVICE_FIXED_CHILD
attribute. attribute.
If any of these children cannot be registered, this call will fail (we If any of these children cannot be registered, this call will fail (we
don't remove children we already registered up to this point in this case). don't remove children we already registered up to this point in this case).
@@ -2047,7 +2046,7 @@ device_node::FindChild(const char* moduleName) const
/*! This returns the priority or importance of this node. Nodes with higher /*! This returns the priority or importance of this node. Nodes with higher
priority are registered/probed first. priority are registered/probed first.
Currently, only the B_FIND_MULITPLE_CHILDREN flag alters the priority; Currently, only the B_FIND_MULTIPLE_CHILDREN flag alters the priority;
it might make sense to be able to directly set the priority via an it might make sense to be able to directly set the priority via an
attribute. attribute.
*/ */