1. NAME

device_bind_driver - bind a driver to one device.

2. SYNOPSIS

int device_bind_driver(struct device *  dev );

3. ARGUMENTS

dev
    device.

4. DESCRIPTION

Allow manual attachment of a driver to a device. Caller must have already set dev->driver.

Note that this does not modify the bus reference count nor take the busAqs rwsem. Please verify those are accounted for before calling this. (It is ok to call with no other effort from a driverAqs probe method.)

This function must be called with the device lock held.

5. COPYRIGHT