mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-02 12:34:06 +00:00
driver core: fix kernel doc of device_release_driver
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
1f5681aae8
commit
ab71c6f076
1 changed files with 9 additions and 9 deletions
|
@ -281,17 +281,10 @@ int driver_attach(struct device_driver * drv)
|
||||||
return bus_for_each_dev(drv->bus, NULL, drv, __driver_attach);
|
return bus_for_each_dev(drv->bus, NULL, drv, __driver_attach);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* device_release_driver - manually detach device from driver.
|
|
||||||
* @dev: device.
|
|
||||||
*
|
|
||||||
* Manually detach device from driver.
|
|
||||||
*
|
|
||||||
* __device_release_driver() must be called with @dev->sem held.
|
* __device_release_driver() must be called with @dev->sem held.
|
||||||
* When called for a USB interface, @dev->parent->sem must be held
|
* When called for a USB interface, @dev->parent->sem must be held as well.
|
||||||
* as well.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static void __device_release_driver(struct device * dev)
|
static void __device_release_driver(struct device * dev)
|
||||||
{
|
{
|
||||||
struct device_driver * drv;
|
struct device_driver * drv;
|
||||||
|
@ -317,6 +310,13 @@ static void __device_release_driver(struct device * dev)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* device_release_driver - manually detach device from driver.
|
||||||
|
* @dev: device.
|
||||||
|
*
|
||||||
|
* Manually detach device from driver.
|
||||||
|
* When called for a USB interface, @dev->parent->sem must be held.
|
||||||
|
*/
|
||||||
void device_release_driver(struct device * dev)
|
void device_release_driver(struct device * dev)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Reference in a new issue