diff options
author | hselasky <hselasky@FreeBSD.org> | 2011-11-22 21:56:55 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2011-11-22 21:56:55 +0000 |
commit | 53a216b72256c147d352657b7e56699b3d36eb77 (patch) | |
tree | 6350fc09dcd14823a24aa2bb365ed4c728cbfc8e /sys/dev/usb/controller/uhci_pci.c | |
parent | 1b8636b892354196b19384bfe65b6f16ca825c20 (diff) | |
download | FreeBSD-src-53a216b72256c147d352657b7e56699b3d36eb77.zip FreeBSD-src-53a216b72256c147d352657b7e56699b3d36eb77.tar.gz |
Rename device_delete_all_children() into device_delete_children().
Suggested by: jhb @ and marius @
MFC after: 1 week
Diffstat (limited to 'sys/dev/usb/controller/uhci_pci.c')
-rw-r--r-- | sys/dev/usb/controller/uhci_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/controller/uhci_pci.c b/sys/dev/usb/controller/uhci_pci.c index b3fa7a1..4b04f25 100644 --- a/sys/dev/usb/controller/uhci_pci.c +++ b/sys/dev/usb/controller/uhci_pci.c @@ -406,7 +406,7 @@ uhci_pci_detach(device_t self) device_delete_child(self, bdev); } /* during module unload there are lots of children leftover */ - device_delete_all_children(self); + device_delete_children(self); /* * disable interrupts that might have been switched on in |