device_for_each_child

Langue: en

Autres versions - même langue

Version: June 2009 (debian - 07/07/09)

Section: 9 (Appels noyau Linux)

NAME

device_for_each_child - device child iterator.

SYNOPSIS

int device_for_each_child(struct device * parent, void * data, int (*fn) (struct device *dev, void *data));

ARGUMENTS

parent

parent struct device.

data

data for the callback.

fn

function to be called for each device.

DESCRIPTION

Iterate over parent's child devices, and call fn for each, passing it data.

We check the return of fn each time. If it returns anything other than 0, we break out and return that value.