Manual Page Search Parameters

DEVICE_DELETE_CHILD(9) Kernel Developer's Manual DEVICE_DELETE_CHILD(9)

device_delete_childdelete a child from a device

#include <sys/param.h>
#include <sys/bus.h>

int
device_delete_child(device_t dev, device_t child);

The specified device is removed from dev and deleted. If the device is currently attached, it is first detached via device_detach(9). If () fails, its error value is returned. Otherwise, all descendant devices of child are deleted and zero is returned.

The BUS_CHILD_DELETED(9) method is invoked for each device that is deleted. This permits the parent device's driver to tear down any state associated with child devices such as ivars.

Zero is returned on success, otherwise an error is returned.

BUS_CHILD_DELETED(9), device_add_child(9)

This manual page was written by Doug Rabson.

February 5, 2025 release-26.07