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/ahci/ahci.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/ahci/ahci.c')
-rw-r--r-- | sys/dev/ahci/ahci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ahci/ahci.c b/sys/dev/ahci/ahci.c index 6aa131c..afa4b99 100644 --- a/sys/dev/ahci/ahci.c +++ b/sys/dev/ahci/ahci.c @@ -518,7 +518,7 @@ ahci_detach(device_t dev) int i; /* Detach & delete all children */ - device_delete_all_children(dev); + device_delete_children(dev); /* Free interrupts. */ for (i = 0; i < ctlr->numirqs; i++) { |