1. NAME

driver_for_each_device - Iterator for devices bound to a driver.

2. SYNOPSIS

int driver_for_each_device(struct device_driver *  drv , struct device *  start , void *  data , int (* fn ) (struct device *, void *));

3. ARGUMENTS

drv
    Driver weAqre iterating.

start
    Device to begin with

data
    Data to pass to the callback.

fn
    Function to call for each device.

4. DESCRIPTION

Iterate over the drvAqs list of devices calling fn for each one.

5. COPYRIGHT