* A device was added to the tree. We are called just after it successfully * attaches (that is, probe and attach success for this device). No call * is made if a device is merely parented into the tree. See devnomatch * if probe fails. If attach fails, no notification is sent (but maybe * we should have a different message for this). */
| 763 | * we should have a different message for this). |
| 764 | */ |
| 765 | static void |
| 766 | devadded(device_t dev) |
| 767 | { |
| 768 | devaddq("+", device_get_nameunit(dev), dev); |
| 769 | } |
| 770 | |
| 771 | /* |
| 772 | * A device was removed from the tree. We are called just before this |
no test coverage detected